All skillsGEO
Source Domain Strategy
Which domains to earn on
Install this skill
Skills are SKILL.md files your agent loads for specialized workflows. Most tools discover them under .cursor/skills/, .agents/skills/, or a global skills folder. See the Agent Skills spec.
- Create
.cursor/skills/source-domain-strategy/in your repo (or user skills folder). - Save the skill file as
.cursor/skills/source-domain-strategy/SKILL.md. - Connect AI SEO Tracker MCP from your project Settings -> Agent page (OAuth, no secrets in
mcp.json). - In your agent (Cursor, Claude Code, etc.), invoke
/source-domain-strategyor describe the task — the agent applies the skill when relevant.
Quick install (terminal)
mkdir -p .cursor/skills/source-domain-strategy/ && curl -fsSL "https://aiseotracker.com/api/skills/source-domain-strategy" -o .cursor/skills/source-domain-strategy/SKILL.md
SKILL.md
Full skill file your agent reads.
---
name: source-domain-strategy
description: Maps which domains and site types AI cites most for your project and recommends where to earn citations. Use for domain strategy, PR focus, or GEO prioritization.
---
# Source Domain Strategy
## Prerequisites
AI SEO Tracker MCP must be connected before running this skill.
1. Open AI SEO Tracker -> Project Settings -> Agent (`/p/{projectSlug}/settings/agent`).
2. Copy the MCP URL shown on that page (`https://aiseotracker.com/api/agent/mcp` for this environment).
3. Add it to your MCP-capable client. Cursor example:
```json
{
"mcpServers": {
"aiseotracker": {
"url": "https://aiseotracker.com/api/agent/mcp"
}
}
}
```
4. Reload/restart your MCP client so it discovers the new server. In Cursor, reload the window after saving `.cursor/mcp.json`.
5. In Cursor, open Settings -> MCP, find `aiseotracker`, and click **Connect**.
6. Approve the AI SEO Tracker OAuth prompt in the browser. No API key or static token is required.
7. If a tool call returns `agent_auth_required`, the client has not completed OAuth yet. Reconnect/reload MCP from the Agent settings page and retry.
Available MCP tools:
- `get_project_sources` - citation URLs and domains; optional `domain` filter
- `get_project_prompts` - tracked prompts, visibility status, and ranks; optional `status`
- `get_project_snippets` - how AI describes a brand
- `get_project_competitors` - tracked competitor brands
## Workflow
```
- [ ] get_project_sources
- [ ] get_project_prompts (by status)
- [ ] get_project_competitors
```
## Output
1. **Top domains** — table: domain, mention count, example URLs, linked prompt themes
2. **Domain types** — blogs, reviews, docs, forums, news (% estimate from URLs)
3. **Gaps** — domain types over-represented for rivals (infer from competitor-winning prompts + sources)
4. **90-day plan** — 5 domains to earn on, with tactic per domain (guest post, listicle, docs, community)
Use only domains from `get_project_sources`. No invented sites.
To connect MCP, open your project in AI SEO Tracker and go to Settings -> Agent.