MCP Catalogs
首页

dbhub vs everything

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

dbhub
by bytebase
everything
by modelcontextprotocol
Stars★ 2,769★ 85,748
30天用量
综合分5777
官方
分类
数据库开发者工具运维基建
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交1 个月前本月

dbhub · 概述

零依赖 MCP 服务器,高效连接多种数据库并提供 SQL 工具。

everything · 概述

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

dbhub · 使用场景

  • 开发者进行数据库探索和模式检查
  • 在 CI/CD 管道中执行带安全控制的 SQL 查询
  • 通过统一界面管理多个数据库和操作

everything · 使用场景

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

dbhub · 安装

安装

**Docker:**

docker run --rm --init \   --name dbhub \   --publish 8080:8080 \   bytebase/dbhub \   --transport http \   --port 8080 \   --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"

**NPM:**

npx @bytebase/dbhub@latest --transport http --port 8080 --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"

**演示模式:**

npx @bytebase/dbhub@latest --transport http --port 8080 --demo

Claude Desktop 配置

将以下内容添加到您的 Claude Desktop 配置中:

{
  "mcpServers": {
    "dbhub": {
      "command": "npx",
      "args": ["@bytebase/dbhub@latest", "--transport", "stdio"]
    }
  }
}

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 公开数据自动生成,定期更新。