everything vs civic-ai-tools
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | civic-ai-tools by npstorey | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具government-data开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
civic-ai-tools · 概述
将AI助手连接到政府开放数据的MCP服务器,配备反幻觉框架。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
civic-ai-tools · 使用场景
- 记者分析公共服务投诉和趋势
- 政府工作人员获取住房和健康违规数据
- 研究人员比较城市间的人口和经济指标
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-everythingcivic-ai-tools · 安装
快速开始(推荐)
- 点击仓库中的**"Open in GitHub Codespaces"**按钮
- 等待环境构建(自动安装所有内容)
- 在Agent模式下打开**Copilot Chat**并开始提问
本地设置
git clone https://github.com/npstorey/civic-ai-tools.git
cd civic-ai-tools
cp .env.example .env
./scripts/setup.shClaude Desktop配置
将其添加到您的Claude Desktop配置中:
{
"mcpServers": {
"civic-ai-tools": {
"command": "uv",
"args": ["run", "mcp/server.py"],
"env": {
"SOCRATA_APP_TOKEN": "YOUR_TOKEN_HERE"
}
}
}
}