MCP Catalogs
首页

mcp-graphql vs everything

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

mcp-graphql
by blurrah
everything
by modelcontextprotocol
Stars★ 385★ 85,748
30天用量
综合分4777
官方
分类
开发者工具AI / LLM 工具网页抓取
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交8 个月前本月

mcp-graphql · 概述

MCP 服务器使 LLM 能够通过模式内省和查询执行与 GraphQL API 交互。

everything · 概述

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

mcp-graphql · 使用场景

  • 使 AI 助手能够查询 GraphQL API 而无需自定义实现
  • 允许语言模型发现和交互未知的 GraphQL 服务
  • 为 AI 应用程序提供对 GraphQL 端点的安全只读访问

everything · 使用场景

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

mcp-graphql · 安装

通过 Smithery 安装

npx -y @smithery/cli install mcp-graphql --client claude

手动安装 (Claude Desktop)

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

{
    "mcpServers": {
        "mcp-graphql": {
            "command": "npx",
            "args": ["mcp-graphql"],
            "env": {
                "ENDPOINT": "http://localhost:3000/graphql"
            }
        }
    }
}

环境变量

  • ENDPOINT: GraphQL 端点 URL(默认:http://localhost:4000/graphql)
  • HEADERS: 包含请求头的 JSON 字符串
  • ALLOW_MUTATIONS: 启用变更操作(默认禁用)
  • NAME: MCP 服务器名称
  • SCHEMA: 本地 GraphQL 模式文件路径或 URL(可选)

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