Connect your AI tools to Zutrix SEO data using the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
get_projects |
List all your SEO projects |
get_project_keywords |
Get tracked keywords with current rankings |
get_keyword_history |
Get ranking position history over time |
get_keyword_suggestions |
Get keyword ideas and metrics |
get_serp_results |
Get SERP data for a keyword |
get_competitors |
Get competitor analysis and keyword gaps |
get_backlinks |
Get backlink profile data |
get_site_audit |
Run a technical SEO page audit |
get_domain_overview |
Get comprehensive domain metrics |
get_ai_visibility |
Get AI search visibility data |
Go to Zutrix Settings and generate an API key.
npm install -g zutrix-mcp-serverAdd to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"zutrix": {
"command": "npx",
"args": ["-y", "zutrix-mcp-server"],
"env": {
"ZUTRIX_API_KEY": "your_api_key_here"
}
}
}
}Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"zutrix": {
"command": "npx",
"args": ["-y", "zutrix-mcp-server"],
"env": {
"ZUTRIX_API_KEY": "your_api_key_here"
}
}
}
}Add to your VS Code settings (.vscode/mcp.json):
{
"servers": {
"zutrix": {
"command": "npx",
"args": ["-y", "zutrix-mcp-server"],
"env": {
"ZUTRIX_API_KEY": "your_api_key_here"
}
}
}
}| Variable | Required | Default | Description |
|---|---|---|---|
ZUTRIX_API_KEY |
Yes | - | Your Zutrix API key |
ZUTRIX_API_BASE |
No | https://zutrix.com |
API base URL (for development) |
Once configured, you can ask your AI tool questions like:
- "Show me all my Zutrix projects"
- "What are the top keywords for my project?"
- "How has the ranking for 'best seo tool' changed over the last 30 days?"
- "Run an SEO audit on https://example.com"
- "What are my competitors doing better than me?"
- "Find keyword opportunities related to 'email marketing'"
- "Show me my backlink profile"
- "How visible is my brand in AI search results?"
MIT