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 | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 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-everythingmcp-graphql-forge · Install
Installation
Recommended Method (Smithery)
npx @smithery/cli install @toolprint/mcp-graphql-forge --client claudeAlternative Methods
# npm install
npm install -g @toolprint/mcp-graphql-forgeClaude 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"
}
}
}
}