MCP Catalogs
首页

polymarket-mcp vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

polymarket-mcp
by aryankeluskar
everything
by modelcontextprotocol
Stars★ 6★ 85,748
30天用量
综合分3777
官方
分类
金融数据AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交6 个月前本月

polymarket-mcp · 概述

全面的 Polymarket 预测市场 MCP 服务器,提供市场发现、分析工具和实时数据访问。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

polymarket-mcp · 使用场景

  • 构建市场分析工具以识别预测市场趋势和概率
  • 创建交易助手监控高交易量市场和交易模式
  • 开发教育平台使用真实数据示例解释预测市场

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

polymarket-mcp · 安装

安装

  1. 克隆此仓库:
git clone https://github.com/aryankeluskar/polymarket-mcp.git
cd polymarket-mcp
  1. 安装依赖:
npm install
  1. 构建服务器:
npm run build
  1. 添加到 Claude Desktop 配置:
{
  "mcpServers": {
    "polymarket": {
      "command": "node",
      "args": [".smithery/index.js"],
      "env": {
        "SMITHERY_API_KEY": "your_api_key_here"
      }
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。