Set up Searchmetrica Agent Skills
Add Searchmetrica skill files to your AI agent after connecting Searchmetrica MCP.
Searchmetrica Agent Skills are separate files from Searchmetrica MCP.
First, set up Searchmetrica MCP. MCP gives your agent access to Searchmetrica data.
Then add the Searchmetrica SKILL.md files you want your agent to use. Each skill gives your agent one SEO workflow. The files are hosted at searchmetrica.com/skills/<skill-name>/SKILL.md.
Choose an installation option
Pick the option that matches your agent.
Option 1: Install all skills for Claude Code
for skill in seo-project-setup seo-coach keyword-research keyword-clustering competitive-landscape competitor-analysis link-prospecting; do
mkdir -p ~/.claude/skills/$skill
curl -fsSL -o ~/.claude/skills/$skill/SKILL.md "https://searchmetrica.com/skills/$skill/SKILL.md"
doneOption 2: Install all skills for OpenAI Codex
for skill in seo-project-setup seo-coach keyword-research keyword-clustering competitive-landscape competitor-analysis link-prospecting; do
mkdir -p ~/.codex/skills/$skill
curl -fsSL -o ~/.codex/skills/$skill/SKILL.md "https://searchmetrica.com/skills/$skill/SKILL.md"
doneOption 3: Install a single skill
Swap in the skill name and your agent's skills folder:
mkdir -p ~/.claude/skills/keyword-research
curl -fsSL -o ~/.claude/skills/keyword-research/SKILL.md "https://searchmetrica.com/skills/keyword-research/SKILL.md"Option 4: Download and copy manually
Open the skill file in your browser, then save it into your agent's skills folder as <skill-name>/SKILL.md:
- seo-project-setup
- seo-coach
- keyword-research
- keyword-clustering
- competitive-landscape
- competitor-analysis
- link-prospecting
Each skill page also links to its source SKILL.md.
Run a skill
After the skill files are available to your agent, run the matching slash command:
/seo-project-setup/seo-coach/keyword-research/keyword-clustering/competitive-landscape/competitor-analysis/link-prospecting
Next step
Start with SEO Project Setup if this is a new SEO project, or SEO Coach if you are not sure which workflow to run first.