time vs polymarket-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | polymarket-mcp by pab1it0 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30天用量 | — | — |
| 综合分 | 77 | 40 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 金融数据AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 2 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
polymarket-mcp · 概述
MCP 服务器提供对 Polymarket 预测市场数据的标准化访问接口。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
polymarket-mcp · 使用场景
- 提供预测市场分析和见解的 AI 助手
- 对 Polymarket 数据变化做出反应的自动交易系统
- 收集和分析预测市场趋势的研究工具
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}polymarket-mcp · 安装
Docker 安装
- 构建 Docker 镜像:
docker build -t polymarket-mcp-server .- 添加到 Claude Desktop 配置:
{
"mcpServers": {
"polymarket": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "GAMMA_API_URL",
"-e", "GAMMA_REQUIRES_AUTH",
"polymarket-mcp-server"
],
"env": {
"GAMMA_API_URL": "https://gamma-api.polymarket.com",
"GAMMA_REQUIRES_AUTH": "false"
}
}
}
}UV 安装(替代方案)
- 设置环境:
cp .env.template .env
# 编辑 .env 文件配置- 添加到 Claude Desktop 配置:
{
"mcpServers": {
"polymarket": {
"command": "/usr/local/bin/uv",
"args": [
"run",
"-m", "polymarket_mcp_server.main"
],
"cwd": "<polymarket-mcp 目录的完整路径>",
"env": {
"GAMMA_API_URL": "https://gamma-api.polymarket.com",
"GAMMA_REQUIRES_AUTH": "false"
}
}
}
}