Back to MCP directory
publicPublicdnsLocal runtime

agora-mcp

Agora MCP是一个连接AI助手与SearchAgora产品搜索引擎的MCP服务器,支持通过AI助手搜索、比较和管理购物车中的商品,并完成购买。

article

README

🚀 Agora MCP

Agora MCP是一个MCP服务器,借助AI助手(例如Claude或Cursor)实现产品的搜索、发现与购买功能,为用户提供便捷的购物体验。

🚀 快速开始

Agora MCP将AI助手与SearchAgora相连,SearchAgora是一款通用的产品搜索引擎,可帮助您从网络各处发现并购买产品。通过这个MCP,您能直接在AI助手中无缝地搜索产品、比较不同选项、管理购物车并完成购买。

✨ 主要特性

  • 连接AI助手与通用产品搜索引擎,实现便捷购物。
  • 支持通过AI助手直接完成产品搜索、比较、购物车管理和购买等操作。

📦 安装指南

先决条件

设置MCP服务器

对于Cursor

  1. 打开Cursor,进入设置界面。
  2. 导航至MCP服务器配置选项。
  3. 添加以下配置:
{
  "mcpServers": {
    "Agora": {
      "command": "uvx",
      "args": [
        "agora-mcp"
      ]
    },
    "Fewsats": {
      "command": "env",
      "args": [
        "FEWSATS_API_KEY=YOUR_FEWSATS_API_KEY",
        "uvx",
        "fewsats-mcp"
      ]
    }
  }
}

请使用您从Fewsats获取的实际API密钥替换YOUR_FEWSATS_API_KEY

对于Claude Desktop

  1. 找到配置文件:
    • MacOS系统路径:~/Library/Application\ Support/Claude/claude_desktop_config.json
    • Windows系统路径:%APPDATA%/Claude/claude_desktop_config.json
  2. 添加以下配置:
"mcpServers": {
  "Agora": {
    "command": "uvx",
    "args": [
      "agora-mcp"
    ]
  },
  "Fewsats": {
    "command": "env",
    "args": [
      "FEWSATS_API_KEY=YOUR_FEWSATS_API_KEY",
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