MCP Catalogs
首页

fastify-mcp vs everything

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

fastify-mcp
by haroldadmin
everything
by modelcontextprotocol
Stars★ 27★ 85,748
30天用量
综合分4477
官方
分类
开发者工具AI / LLM 工具运维基建
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交本月本月

fastify-mcp · 概述

一个Fastify插件,支持通过Streamable HTTP和HTTP+SSE传输方式运行MCP服务器。

everything · 概述

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

fastify-mcp · 使用场景

  • 将MCP工具和资源直接嵌入到Fastify Web应用程序中
  • 创建通过HTTP端点提供AI功能的MCP支持API
  • 构建为客户端维护会话信息的有状态MCP服务器

everything · 使用场景

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

fastify-mcp · 安装

# npm
npm install fastify-mcp

# yarn
yarn add fastify-mcp

要与Claude Desktop一起使用,请添加到claude_desktop_config.json中:

{
  "mcpServers": {
    "fastify-mcp": {
      "command": "node",
      "args": ["你的/fastify-server.js路径"]
    }
  }
}

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