MCP Catalogs
首页

bonnard vs everything

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

bonnard
by bonnard-data
everything
by modelcontextprotocol
Stars★ 26★ 85,748
30天用量
综合分4477
官方
分类
数据库AI / LLM 工具开发者工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交3 个月前本月

bonnard · 概述

Bonnard 是一个 AI 原生语义层,通过 MCP 服务器为 AI 代理提供可靠的数据查询能力。

everything · 概述

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

bonnard · 使用场景

  • AI 代理查询一致的语义层进行分析和报告
  • 构建具有受管指标和维度的数据应用
  • 通过 MCP 将结构化数据能力嵌入 AI 工作流

everything · 使用场景

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

bonnard · 安装

# 1. 搭建项目
npx @bonnard/cli init --self-hosted

# 2. 配置数据源
#    编辑 .env 文件添加数据库凭证

# 3. 启动服务器
docker compose up -d

# 4. 定义语义层
#    将立方体/视图 YAML 文件添加到 bonnard/cubes/ 和 bonnard/views/

# 5. 将模型部署到服务器
bon deploy

# 6. 连接 AI 代理
bon mcp

对于 Claude Desktop / Cursor:

{
  "mcpServers": {
    "bonnard": {
      "url": "https://bonnard.example.com/mcp",
      "headers": {
        "Authorization": "Bearer your-secret-token-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 公开数据自动生成,定期更新。