MCP Catalogs
Home

everything vs mcp-graphql-forge

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
mcp-graphql-forge
by toolprint
Stars★ 85,748★ 18
30d uses
Score7740
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis month9 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-graphql-forge · Summary

MCP server that converts GraphQL APIs into MCP tools with automatic parameter validation and field selection caching.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-graphql-forge · Use cases

  • Integrating GraphQL APIs like GitHub, Strapi, or Shopify into AI workflows
  • Converting internal GraphQL services to MCP tools for AI assistants
  • Automating API interactions without manual query construction

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

mcp-graphql-forge · Install

Installation

Recommended Method (Smithery)

npx @smithery/cli install @toolprint/mcp-graphql-forge --client claude

Alternative Methods

# npm install
npm install -g @toolprint/mcp-graphql-forge

Claude Desktop Configuration

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-graphql-forge": {
      "command": "npx",
      "args": [
        "-y",
        "@toolprint/mcp-graphql-forge"
      ],
      "env": {
        "GRAPHQL_ENDPOINT": "https://your-api.com/graphql",
        "GRAPHQL_AUTH_HEADER": "Bearer YOUR_TOKEN"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.