Skip to content

客户端接入

选择你常用的 AI 客户端,查看 MCP 配置教程。

两种接入方式

托管 HTTP 模式(推荐)

无需本地安装 Python,只需配置一行 URL:

json
{
  "mcpServers": {
    "sentinel": {
      "url": "https://mcp.priceminder.online?key=你的MCP-Key"
    }
  }
}

本地 stdio 模式

适合开发者本地调试:

json
{
  "mcpServers": {
    "sentinel": {
      "command": "uvx",
      "args": ["sentinel-mcp-server"],
      "env": {
        "SENTINEL_API_BASE": "https://priceminder.online/api/v1",
        "SENTINEL_TOKEN": "你的 API Token"
      }
    }
  }
}

支持等级说明

  • P0(推荐):经过完整测试,推荐优先使用
  • P1:经过基本测试,功能正常
  • P2:社区反馈可用,未全面测试

Released under the MIT License.