Back to MCP directory
publicPublicdnsLocal runtime

zutrix-mcp-server

Zutrix MCP服务器是一个连接AI工具与Zutrix SEO数据的模型上下文协议服务,提供关键词追踪、竞争对手分析、网站审计等SEO功能。

article

README

🚀 Zutrix MCP 服务器

通过模型上下文协议(MCP)将你的 AI 工具连接到 Zutrix 的 SEO 数据。

✨ 主要特性

提供一系列工具,可用于获取 SEO 项目、关键词、排名历史、SERP 数据、竞争对手分析等多方面的信息,帮助用户更好地进行 SEO 优化。

📦 安装指南

1. 获取 API 密钥

前往 Zutrix 设置 并生成一个 API 密钥。

2. 安装

npm install -g zutrix-mcp-server

3. 配置你的 AI 工具

Claude 桌面版

在 macOS 系统中,添加到 ~/Library/Application Support/Claude/claude_desktop_config.json;在 Windows 系统中,添加到 %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "zutrix": {
      "command": "npx",
      "args": ["-y", "zutrix-mcp-server"],
      "env": {
        "ZUTRIX_API_KEY": "your_api_key_here"
      }
    }
  }
}

Cursor

在项目根目录的 .cursor/mcp.json 中添加:

{
  "mcpServers": {
    "zutrix": {
      "command": "npx",
      "args": ["-y", "zutrix-mcp-server"],
      "env": {
        "ZUTRIX_API_KEY": "your_api_key_here"
      }
    }
  }
}

VS Code

在 VS Code 设置(.vscode/mcp.json)中添加:

{
  "servers": {
    "zutrix": {
      "command": "npx",
      "args": ["-y", "zutrix-mcp-server"],
      "env": {
        "ZUTRIX_API_KEY": "your_api_key_here"
      }
    }
  }
}

📚 详细文档

可用工具

| 工具 | 描述 | |------|-------------| | get_projects | 列出你所有的 SEO 项目 | | get_project_keywords | 获取跟踪关键词及其当前排名 | | get_keyword_history | 获取关键词排名随时间的历史记录 | | get_keyword_suggestions | 获取关键词创意和指标 | | get_serp_results | 获取某个关键词的 SERP 数据 | | get_competitors | 获取竞争对手分析和关键词差距 | | get_backlinks | 获取反向链接配置文件数据 | | get_site_audit | 运行技术 SEO 页面审计 | | get_domain_overview | 获取全面的域名指标 | | get_ai_visibility | 获取 AI 搜索可见性数据 |

环境变量

| 变量 | 是否必需 | 默认值 | 描述 | |----------|----------|---------|-------------| | ZUTRIX_API_KEY | 是 | - | 你的 Zutrix API 密钥 | | ZUTRIX_API_BASE | 否 | https://zutrix.com | API 基础 URL(用于开发) |

💻 使用示例

配置完成后,你可以向你的 AI 工具提出如下问题:

  • "Show me all my Zutrix projects"(显示我所有的 Zutrix 项目)
  • "What are the top keywords for my project?"(我的项目的顶级关键词有哪些?)
  • "How has the ranking for 'best seo tool' changed over the last 30 days?"(“最佳 SEO 工具”这个关键词在过去 30 天里的排名有何变化?)
  • "Run an SEO audit on https://example.com"(对 https://example.com 进行 SEO 审计)
  • "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?"(我的品牌在 AI 搜索结果中的可见度如何?)

📄 许可证

本项目采用 MIT 许可证。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client