MCP Catalogs
首页

everything vs toolhive-registry-server

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

everything
by modelcontextprotocol
toolhive-registry-server
by stacklok
Stars★ 85,748★ 16
30天用量
综合分7742
官方
分类
开发者工具AI / LLM 工具其它
运维基建开发者工具安全
实现语言TypeScriptGo
最近提交本月本月

everything · 概述

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

toolhive-registry-server · 概述

ToolHive 注册服务器用于发现、管控和组织内 MCP 服务器与技能的访问权限。

everything · 使用场景

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

toolhive-registry-server · 使用场景

  • 在拥有多个团队的大型组织中集中管理 MCP 服务器
  • 从公共注册表和内部源聚合 MCP 服务器,实现统一的访问控制
  • 根据不同团队的角色和需求,提供相同的 MCP 服务器的不同视图

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

toolhive-registry-server · 安装

安装

前提条件

  • Go 1.26 或更高版本(用于从源码构建)
  • Task(用于构建自动化)
  • PostgreSQL 16+

从源码构建

task build

运行

# 使用 Git 源运行
thv-registry-api serve --config examples/config-git.yaml

# 使用本地文件运行
thv-registry-api serve --config examples/config-file.yaml

Docker

task docker-up

Claude Desktop 集成

添加到 Claude Desktop 配置:

{
  "mcpServers": {
    "toolhive": {
      "command": "thv-registry-api",
      "args": ["serve", "--config", "path/to/config.yaml"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。