exa-personal-sitelisted
Install: claude install-skill Layneformalized225/ai-cofounder
# Personal Site Search (Exa)
## Tool
Use `exec` to call: `mcporter call exa-search.web_search_advanced_exa category=personal\ site <params>`
**Always include `category=personal\ site`.**
## Full Filter Support
Unlike `company` or `tweet` categories, `personal site` supports ALL parameters:
- Domain: `includeDomains`, `excludeDomains`
- Date: `startPublishedDate`, `endPublishedDate`, `startCrawlDate`, `endCrawlDate`
- Text: `includeText`, `excludeText` (single-item only — multi-item causes 400 error)
- Content: `enableSummary`, `enableHighlights`, `subpages`, `subpageTarget`
## Call Syntax
```bash
# Technical blog posts
mcporter call exa-search.web_search_advanced_exa \
query="building production LLM applications lessons learned" \
category="personal site" \
numResults=15 \
type=deep \
enableSummary=true
# Recent posts only
mcporter call exa-search.web_search_advanced_exa \
query="Rust async runtime comparison" \
category="personal site" \
startPublishedDate=2025-01-01 \
numResults=10 \
type=auto
# Exclude aggregators, find independent blogs
mcporter call exa-search.web_search_advanced_exa \
query="startup founder lessons" \
category="personal site" \
excludeDomains='["medium.com","substack.com"]' \
numResults=15 \
type=auto
# Portfolio sites with subpages
mcporter call exa-search.web_search_advanced_exa \
query="AI engineer portfolio projects" \
category="personal site" \
numResults=10 \
subpages=2 \
subpageTarget=projects
``