everything vs ai-compliance-monitor
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | ai-compliance-monitor by vdineshk | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30天用量 | — | — |
| 综合分 | 77 | 36 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具可观测性开发者工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 1 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ai-compliance-monitor · 概述
MCP 服务器为 AI 代理提供结构化监管情报,确保跨司法管辖区合规性。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ai-compliance-monitor · 使用场景
- AI 代理招聘/筛选工具
- 金融服务信用评分系统
- 医疗健康医疗分诊应用
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-everythingai-compliance-monitor · 安装
通过 MCP 安装
将以下内容添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"ai-compliance-monitor": {
"command": "npx",
"args": ["@modelcontextprotocol/server-ai-compliance-monitor"],
"env": {}
}
}
}自托管部署
- 克隆仓库:
``bash git clone https://github.com/vdineshk/ai-compliance-monitor.git cd ai-compliance-monitor ``
- 安装依赖:
``bash npm install ``
- 创建 D1 数据库:
``bash npx wrangler d1 create ai-compliance-monitor-db # 将 database_id 复制到 wrangler.toml ``
- 运行迁移和种子数据:
``bash npx wrangler d1 migrations apply ai-compliance-monitor-db --remote npx wrangler d1 execute ai-compliance-monitor-db --remote --file=./migrations/0002_seed_data.sql ``
- 部署:
``bash npx wrangler deploy ``