mcp-graphql-enhanced
This enhanced MCP server enables AI clients to securely interact with any GraphQL API through two main tools:
query-graphql: Execute GraphQL queries and mutations (mutations disabled by default, enable viaALLOW_MUTATIONSenvironment variable) with support for variables and dynamic authentication headers passed at runtimeintrospect-schema: Retrieve GraphQL schemas with optional filtering by type names (e.g.,["Query", "User"]) to reduce LLM context noise
Key Features:
Dynamic Authentication: Pass Authorization headers and API keys directly via tool arguments without server restarts
Multiple Schema Sources: Works with live endpoints, local schema files, or remote schema URLs
Robust Error Handling: Fixes common GraphQL variable parsing issues for better interoperability
MCP Compatibility: Drop-in replacement for
mcp-graphqlsupporting Claude Desktop, Cursor, and GlamaFlexible Deployment: Supports npx, Docker, and local Node.js execution
Provides tools for executing GraphQL queries and introspecting schemas against any GraphQL endpoint, with support for dynamic headers, filtered schema introspection, and configurable mutation controls
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-graphql-enhancedintrospect the schema but only show Query and User types"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-graphql-enhanced
An enhanced MCP (Model Context Protocol) server for GraphQL that fixes real-world interoperability issues between LLMs and GraphQL APIs.
Drop-in replacement for
mcp-graphqlβ with dynamic headers, robust variables parsing, and zero breaking changes.
π― What is mcp-graphql-enhanced?
mcp-graphql-enhanced is a high-performance, federated GraphQL gateway designed to act as a workhorse for LLM agents. It bridges the gap between massive, complex GraphQL ecosystems and the context-limited environment of AI assistants. Unlike standard "all-or-nothing" introspection tools that crash under the weight of large schemas (like GitHub's or enterprise-grade Neo4j graphs), this server provides surgical control over how your agent perceives and interacts with your data.
π‘ Why do you need it?
If you have ever seen the<error>Tool result is too large</error>while trying to introspect your API, you are already hitting the limits of standard MCP implementations. Here is why mcp-graphql-enhanced is the industry-standard choice for professional environments:
Avoid the 1MB Ceiling: It shifts the responsibility for scope from the server to the caller. Instead of a unilateral "everything or nothing" dump, you get granular control via typeNames and typeDepth parameters.
Surgical Precision: You can selectively introspect only the nodes you need (e.g., Repository, User, or Message), keeping your context window clean and your LLM focused.
Predictability over Immunity: It doesn't promise "unlimited" capacityβit promises predictability. In enterprise systems, you need a tool that lets you navigate the graph surgically and fail predictably if you overstep, rather than a "black box" that dies on you the moment the schema grows.
Proof of Performance: See a real-world demonstration of the gateway bypassing standard architectural limits during a live diagnostic test against the GitHub API: π Diagnostic Case Study: Scoped vs. Monolithic Introspection (Shared Chat)
π¬ Community & Support
Join the conversation! If you have questions about using this bridge with Neo4j, Discord data graphs, or GraphQL in general, come hang out with us:
Discord Channel: #mcp-graphql-enhanced
Server: The official GraphQL Discord
This is the best place to share your feedback, report issues, or suggest new "enhanced" features for the bridge.
Related MCP server: mcp-graphql-schema
β¨ Key Enhancements
β Dynamic Endpoint Switching β Hot-swap targets on the fly directly via tool arguments without restarting the server or losing session context.
β Built-in GraphiQL IDE β Visual playground at / (or /graphql, /graphiql) with pre-configured headers for instant testing and introspection.
β Dual Transport β Supports both STDIO (for local CLI/client tools) and HTTP/JSON-RPC (for external/browser clients).
β Dynamic headers β pass
Authorization,X-API-Key, etc., via tool arguments (no config restarts)β Robust variables parsing β fixes
βQuery variables must be a null or an objectβerrorβ Smart introspection β supports filtered requests (via typeNames) and recursive depth control (via typeDepth) to minimize LLM context noise and optimize schema exploration.
β Full MCP compatibility β works with Claude Desktop, Groq Desktop, Google Antigravity, Glama, Gemini CLI, Hermes Agent and any standard MCP client
β Secure by default β mutations disabled unless explicitly enabled
β Dynamic Schema Evolution β Smart diagnostics and gap analysis for servers that regenerate GraphQL types on-the-fly (like Neo4j).
β Deep Observability β Automatic Cypher extraction and cleaning from GraphQL extensions.
π₯ Dynamic Endpoint Switching
The bridge allows LLMs or clients to dynamically target different GraphQL endpoints at runtime within a single session without requiring server restarts or configuration changes.
Simply pass the optional endpoint parameter in query-graphql or introspect-schema:
Zero Downtime: Hot-swaps the underlying schema and clears internal caches instantly.
Context Preservation: Keeps the MCP connection open while shifting queries between different environments (e.g., switching from a Discord ingest node to a Neo4j graph database).
π Federated Multi-Node Architecture (v3.9.1+)
The server operates as a Federated GraphQL Gateway, merging independent nodes into a unified system.
Zero Breaking Changes: If you provide a single URL in
ENDPOINT, the server behaves exactly as before.Federated Introspection: Scans all endpoints simultaneously to build a global capability map.
Smart Aggregation: When multiple comma-separated URLs are provided, the server broadcasts queries and merges results using universal deep deduplication (object-level).
Conflict Handling: Identifies structural differences in identical Type names across nodes and exposes them uniquely.
Bypass Free Tier Limits: Perfect for users of "Free Tier" cloud databases (like Neo4j Aura). You can split your data across multiple free instances and use this bridge to query them as a single unified graph, effectively bypassing entity count limitations.
Proof of Concept:
See a real-world demonstration of the federated query synthesis in action, where the agent aggregates live Discord data with historical Neo4j insights: π Live Federation Analysis (Shared Chat)
π‘ Use Case: Bridging WSL and Windows (PowerShell)
A common challenge for Windows developers is the network isolation between the Windows Subsystem for Linux (WSL) and the host OS. This feature allows you to bridge these two worlds into a "Unified Nervous System".
Example configuration for Claude Desktop:
{
"ENDPOINT": "http://DESKTOP-NAME.local:2311/graphql,http://127.0.0.1:4000/graphql"
}Hybrid Ecosystem: Seamlessly query and aggregate data across Windows-native processes (PowerShell) and Linux-based environments (WSL).
mDNS Support: By using .local addresses, the bridge automatically resolves the host machine's IP from within the WSL environment.
Transparent Aggregation: The AI assistant interacts with a single unified schema, unaware that the data is being fetched from different operating systems simultaneously.
π Advanced Observability & Cypher
The bridge provides deep insights into how the LLM interacts with your graph database.
πΈοΈ Automated Cypher Extraction
For GraphQL server implementations that return query execution plans (like @neo4j/graphql), the bridge automatically:
Detects
extensions.cypherin the response.Sanitizes the output by stripping internal headers (like
CYPHER 5or emptyPARAMS).Injects a clean Cypher block directly into the tool's output for the AI to analyze.
Note: This feature requires your GraphQL server to be configured to include debug information in the response extensions.
π¨ Visual Command Center (GraphiQL)
Unlike standard MCP servers, this one provides a visual interface for humans. When running with ENABLE_HTTP=true, you can open a full-featured GraphiQL IDE in your browser.
Endpoint:
http://localhost:6274/(or /graphql, /graphiql)Header Sync: Any headers set in your environment (like GitHub tokens) are automatically injected into the GraphiQL "Headers" tab for immediate testing.
π» HTTP / Dual Transport
This server now runs in dual transport mode, supporting both the standard STDIO communication (used by most MCP clients) and a new HTTP JSON-RPC endpoint on port 6274.
This allows external systems, web applications, and direct curl commands to access the server's tools with live request logging in your terminal ([HTTP-RPC] logs).
Endpoint | Method | Description |
|
| Human Interface: The visual GraphQL IDE. |
|
| The main JSON-RPC 2.0 endpoint for tool execution. |
|
| Simple health check, returns |
Automatic Port Selection
The server defaults to port 6274. If you encounter an EADDRINUSE error, the server will automatically find the next available port. Check the server logs for the final bound port (e.g., [HTTP] Started server on http://localhost:6275).
Resolving Port Conflicts (EADDRINUSE) and Automatic Port Selection
The server defaults to port 6274. If you encounter an EADDRINUSE: address already in use :::6274 error (common in local development due to stale processes), the server will automatically find the next available port (up to 10 attempts, not spawning multiple servers).
This ensures the server starts successfully even when the default is blocked. Always check the server logs for the final bound port (e.g., [HTTP] Started server on http://localhost:6275) if your curl or client tool fails on the default 6274.
To force a specific port (e.g., for guaranteed external firewall settings), you can still explicitly set the MCP_PORT environment variable:
Testing the HTTP Endpoint
You can test the endpoint using curl as long as the server is running (e.g., via npm run dev):
Test the health check (assuming the server bound to the default or found the next available port)
curl http://localhost:6274/healthTesting the JSON-RPC Transport
curl -X POST http://localhost:6274/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc":"2.0",
"method":"tools/list",
"params":{},
"id":1
}'
curl -X POST http://localhost:6274/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "introspect-schema",
"arguments": {}
},
"id": 2
}'
curl -X POST http://localhost:6274/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "introspect-schema",
"arguments": {
"endpoint": "https://mcp-neo4j-discord.vercel.app/api/graphiql"
}
},
"id": 3
}'
curl -X POST http://localhost:6274/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "introspect-schema",
"arguments": {
"typeNames": ["User", "Message"]
}
},
"id": 4
}'
curl -X POST http://localhost:6274/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "introspect-schema",
"arguments": {
"typeNames": ["Message"],
"typeDepth": 4
}
},
"id": 5
}'
curl -X POST http://localhost:6274/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "query-graphql",
"arguments": {
"query": "{ guildChannels(guild_id: \"1312302100125843476\") { name id topic } }"
}
},
"id": 6
}'
# Executing query with dynamic endpoint switching
curl -X POST http://localhost:6274/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "query-graphql",
"arguments": {
"endpoint": "https://mcp-neo4j-discord.vercel.app/api/graphiql",
"query": "{ getGuilds { name } }"
}
},
"id": 7
}'
# Targeted introspection with depth control and dynamic endpoint switching
curl -X POST http://localhost:6274/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "introspect-schema",
"arguments": {
"endpoint": "https://mcp-neo4j-discord.vercel.app/api/graphiql",
"typeNames": ["Message"],
"typeDepth": 1
}
},
"id": 8
}'(using port 6275 if 6274 was busy)
curl -X POST http://localhost:6275/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"query-graphql","params":{"query":"query { __typename }"},"id":1}'π Use the official MCP Inspector to test your server live:
npx @modelcontextprotocol/inspector \
-e ENDPOINT=https://api.example.com/graphql \
npx @letoribo/mcp-graphql-enhancedEnvironment Variables (Breaking change in 1.0.0)
Note: As of version 1.0.0, command line arguments have been replaced with environment variables.
Environment Variable | Description | Default |
| GraphQL endpoint(s). Supports comma-separated list for Multi-Node Architecture. |
|
| JSON string containing headers for requests |
|
| Enable mutation operations (disabled by default) |
|
| Name of the MCP server |
|
| Path to a local GraphQL schema file or URL | - |
| Port for the HTTP/JSON-RPC server. |
|
| Enable HTTP transport: |
|
Note on |
auto(default): Automatically enables HTTP only when running in MCP Inspector...true: Always enable HTTP serverfalse: Disable HTTP server completely
π Examples
1. Quick Start
Basic startup using the default endpoint.
npx @letoribo/mcp-graphql-enhanced2. Configuration & Authentication
Running with custom headers (e.g., for API keys or Bearer tokens).
ENDPOINT=https://api.example.com/graphql \
HEADERS='{"Authorization":"Bearer xyz"}' \
npx @letoribo/mcp-graphql-enhanced3. Advanced Integration
Using a local .graphql file If you want to work with a local schema without querying the API directly.
ENDPOINT=http://localhost:3000/graphql \
SCHEMA=./schema.graphql \
npx @letoribo/mcp-graphql-enhancedEnabling Mutations (Writes) Mutations are disabled by default for security. To enable them:
ENDPOINT=http://localhost:3000/graphql \
ALLOW_MUTATIONS=true \
npx @letoribo/mcp-graphql-enhancedMulti-Node Architecture (Federation) Aggregating data from multiple sources into a single unified graph.
ENDPOINT=https://mcp-discord.vercel.app/api/graphiql,https://mcp-neo4j-discord.vercel.app/api/graphiql \
npx @letoribo/mcp-graphql-enhanced4. Customizing Environment
Example of port configuration and development mode settings.
# Change the HTTP port
MCP_PORT=8080 npx @letoribo/mcp-graphql-enhanced
# Test targeted introspection and explore the schema visually:
ENDPOINT=https://api.github.com/graphql \
HEADERS='{"Authorization":"Bearer YOUR_GITHUB_TOKEN"}' \
ENABLE_HTTP=true \
npx @letoribo/mcp-graphql-enhanced
# Then visit http://localhost:6274/graphiql5. Interactive Launch with mcpgql (Recommended)
If you want to skip manual environment variable setup, use our CLI tool available on npm.
If installed globally (npm install -g @letoribo/mcpgql), simply run:
mcpgqlAlternatively, you can run it without global installation using:
npx @letoribo/mcpgql@latestZero-config start: Automatic discovery and template initialization.
Interactive selection: Toggle multiple endpoints and permissions on the fly.
Bridge mode: Automatically handles the Federated Bridge setup on localhost:6274.
6. Integration via Smithery CLI
Smithery provides a powerful way to manage your MCP servers, handle authentication, and interact with tools directly from your terminal
# 1. Install Smithery CLI
npm install -g smithery
# 2. Create a namespace
smithery namespace create {your-namespace}
# 3. Add the server
smithery mcp add letoribo/mcp-graphql-enhanced
# 4. Interact with tools
smithery tool list {connection}
smithery tool call {connection} {tool_name} '{"key": "value"}'
E.g.
smithery tool call letoribo-mcp-graphql-enhanced introspect-schema
smithery tool call letoribo-mcp-graphql-enhanced introspect-schema '{"typeNames": ["Guild", "Message", "User"]}'
smithery tool call letoribo-mcp-graphql-enhanced introspect-schema '{"typeNames": ["McpServer"], "typeDepth": 2}'
smithery tool call letoribo-mcp-graphql-enhanced introspect-schema '{"endpoint": "https://mcp-discord.vercel.app/api/graphiql"}'
smithery tool call letoribo-mcp-graphql-enhanced query-graphql '{"query": "{ countMcpServers }"}'
smithery tool call letoribo-mcp-graphql-enhanced query-graphql '{"query": "{ countMcpServers(q: \"graphql\") }"}'
smithery tool call letoribo-mcp-graphql-enhanced query-graphql '{"query": "{ proxyInfo { host source timestamp } }"}'
smithery tool call letoribo-mcp-graphql-enhanced query-graphql '{"query": "{ guildChannels(guild_id: \"1312302100125843476\") { name id topic } }"}'
smithery tool call letoribo-mcp-graphql-enhanced query-graphql '{"query": "{ searchMcpServers(q: \"mcp-remote\", limit: 50) { id name namespace description environmentVariablesJsonSchema { properties required } } }"}'
smithery tool call letoribo-mcp-graphql-enhanced query-graphql '{"query": "{ getMcpServer(id: \"a17sht5lzn\") { name namespace description environmentVariablesJsonSchema { properties required } repository { url } slug spdxLicense { name url } tools { description inputSchema name } url attributes id }}"}'
smithery tool call letoribo-mcp-graphql-enhanced query-graphql '{"endpoint": "https://mcp-neo4j-discord.vercel.app/api/graphiql", "query": "{ getGuilds { name } }"}'βοΈ Deploy to Cloud
This server is fully containerized and optimized for long-running processes.
Recommended Hosting
Platform | Recommended PORT | Notes |
Railway |
| Set |
Render |
| Set |
Important:
For hosted environments, you must set the environment variable
ENABLE_HTTP=truein your platform's settings to ensure the HTTP transport layer is active.Ensure your hosting provider's public networking settings are configured to route traffic to the port defined in your
PORTenvironment variable to avoid502 Bad Gatewayerrors.
β οΈ Concurrent Cloud Usage & Dynamic Endpoints
While mcp-graphql-enhanced supports switching target endpoints on the fly via the optional endpoint argument, keep state mutability in mind when running in hosted/shared environments (e.g., Render, Railway, Smithery):
State Isolation: Providing an
endpointargument dynamically updates the active graph context for the server instance.Best Practice for Concurrent Cloud Requests: If multiple clients, agent sessions, or automated workers share the same cloud instance, always pass the
endpointexplicitly in every tool call (query-graphqlandintrospect-schema).Preventing Context Drift: Relying on the implicitly cached endpoint in a shared environment can lead to race conditions where a concurrent call from another session switches the active upstream URL under your feet.
π Public Live Gateways (Hosted SSE/HTTP Bridges)
If you want to test the bridge instantly without running local Node.js processes, use our hosted cloud endpoints:
Platform | Edge Runtime | Public MCP Endpoint |
Cloudflare Workers | Workers V8 (Global Edge) | |
Vercel | Node.js Serverless |
Note: Public gateways operate in shared environments. Remember to supply your explicit
endpointandheadersin tool calls to ensure request isolation.
π₯οΈ Claude Desktop Configuration Examples
You can connect Claude Desktop to your GraphQL API using either the npx package (recommended for simplicity) or the Docker image (ideal for reproducibility and isolation).
β Option 1: Using npx
{
"mcpServers": {
"mcp-graphql-enhanced": {
"command": "npx",
"args": ["@letoribo/mcp-graphql-enhanced"],
"env": {
"ENDPOINT": "https://your-api.com/graphql"
}
}
}
}π³ Option 2: Using Docker (auto-pull supported)
{
"mcpServers": {
"mcp-graphql-enhanced": {
"command": "sh",
"args": [
"-c",
"docker run --rm -i -e ENDPOINT=$ENDPOINT -e HEADERS=$HEADERS -e ALLOW_MUTATIONS=$ALLOW_MUTATIONS ghcr.io/letoribo/mcp-graphql-enhanced:main"
],
"env": {
"ENDPOINT": "https://your-api.com/graphql",
"HEADERS": "{\"Authorization\": \"Bearer YOUR_TOKEN\"}",
"ALLOW_MUTATIONS": "false"
}
}
}
}π§ͺ Option 3: Using node with local build (for development)
If youβve cloned the repo and built the project (npm run build β outputs to dist/):
{
"mcpServers": {
"mcp-graphql-enhanced": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"ENDPOINT": "https://your-api.com/graphql",
"ALLOW_MUTATIONS": "true"
}
}
}
}Resources
graphql-schema: The server exposes the GraphQL schema as a resource that clients can access. This is either the local schema file, a schema file hosted at a URL, or based on an introspection query.
Available Tools
The server provides two main tools:
introspect-schema: Retrieves the GraphQL schema or a subset. Use this first to understand the graph structure.
Arguments:
typeNames(optional, array): List of specific types to introspect (e.g.,["User", "Message"]). Reduces noise by returning only relevant parts of the graph.typeDepth(optional, number): Controls the recursion level of nested fields (Default:2).Note:
typeDepthis only functional whentypeNamesis provided to narrow the scope.endpoint(optional, string): Target GraphQL HTTP/HTTPS URL to dynamically switch endpoint on the fly before executing introspection.headers(optional, string): JSON stringified object of custom HTTP headers (e.g.,'{"Authorization": "Bearer token"}').
Note: Filtered introspection is only available when querying a live GraphQL endpoint.
query-graphql: Execute GraphQL queries against the endpoint. By default, mutations are disabled unless
ALLOW_MUTATIONSis set totrue.
Arguments:
query(required, string): The GraphQL query or mutation string.variables(optional, string): JSON stringified object of variables.endpoint(optional, string): Target GraphQL HTTP/HTTPS URL to dynamically switch endpoint on the fly before executing query.headers(optional, string): JSON stringified object of custom HTTP headers (e.g.,'{"Authorization": "Bearer token"}').
π‘ Note: Dynamic Headers vs Static env Previously, auth tokens had to be hardcoded statically at startup inside the configuration's "env" block (e.g., in claude_desktop_config.json).
With the optional headers argument added directly to query-graphql and introspect-schema, you get total dynamic control:
Keep Secrets in Your Terminal: You don't have to feed your private tokens (like GitHub PATs or Bearer keys) directly into Claude's prompt or static setup. Just set "ENABLE_HTTP": "true", run your cURL commands or local scripts directly in the terminal, and pass headers there. Any headers passed at runtime will override static tokens from your config file. Otherwise, Claude might just laugh at you for sharing your raw secret tokens in the chat!
On-the-Fly Switching: You can dynamically inject different auth headers per request or per endpoint right at execution time without restarting the MCP server.
Security Considerations
Mutations are disabled by default to prevent unintended data changes. Always validate HEADERS and SCHEMA inputs in production. Use HTTPS endpoints and short-lived tokens where possible.
Customize for your own server
This is a very generic implementation where it allows for complete introspection and for your users to do whatever (including mutations). If you need a more specific implementation I'd suggest to just create your own MCP and lock down tool calling for clients to only input specific query fields and/or variables. You can use this as a reference.
Available Tools
2 toolsintrospect-schemaA
Retrieve GraphQL schema details or system manifest. READ-ONLY: Non-destructive metadata discovery. Usage: 1. If 'typeNames' is provided: Returns the full SDL (Schema Definition Language) for the requested types, including fields and relations. 2. If 'typeNames' is omitted: Returns a Federated Manifestβa high-level summary of connected nodes, their capabilities, and available domain entities (not the full schema). Use this to navigate the federated graph topology before executing queries.
| Name | Required | Description | Default |
|---|---|---|---|
| headers | No | JSON stringified object of extra HTTP headers for the introspection request (e.g. '{"Authorization": "Bearer token"}'). | |
| endpoint | No | Optional target GraphQL HTTP/HTTPS URL to dynamically switch endpoint before execution. | |
| typeDepth | No | Depth of nested fields to retrieve (default: 2) | |
| typeNames | No | List of specific GraphQL type names to introspect. If provided, returns the detailed SDL definitions for these types. If omitted, returns a system-wide Federated Manifest overview. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden, and it explicitly declares 'READ-ONLY: Non-destructive metadata discovery.' It also discloses the two distinct behavioral outcomes based on typeNames and clarifies that the manifest is 'not the full schema,' which helps set expectations. It does not mention potential errors or how headers/endpoint affect behavior, but the core safety and conditional behavior are clearly communicated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear one-line summary, an explicit READ-ONLY safety cue, and a numbered list that front-loads the two usage modes. Every sentence contributes either to behavioral transparency or invocation guidance, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a moderate-complexity tool with zero required parameters and no output schema, the description is largely complete: it covers both invocation modes, the manifest vs. SDL distinction, and the read-only nature. It could be more complete by explicitly routing query execution to query-graphql, but this is a minor gap given the clear 'before executing queries' framing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3, but the description adds meaningful behavior beyond the schema by explaining the conditional outcome for typeNames and clarifying that results include 'fields and relations.' This gives an agent a better mental model of what each parameter triggers, even though the schema already documents the parameters themselves.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as retrieving GraphQL schema details or a system manifest, with a specific verb and resource. It distinguishes between two modesβfull SDL for requested types versus a Federated Manifest overviewβand positions it as metadata discovery before executing queries, differentiating it from the sibling query-graphql tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit conditional guidance: use typeNames to get full SDL definitions, omit it to get a manifest for navigating the federated graph. It also states to use the manifest 'before executing queries,' providing clear context. However, it does not explicitly name or exclude the sibling tool query-graphql as the alternative for actual query execution.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
query-graphqlA
Execute GraphQL operations (queries and mutations) against the federated system. WARNING: This tool performs remote operations. 'Mutation' operations will modify persistent state; execute these only when a state change is intended. Prerequisites: Verify schema structure using 'introspect-schema' before executing complex queries. Security: Inherits environment-based authentication. Returns: A JSON object containing the execution result ('data') or a list of 'errors' in case of failure.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The GraphQL query or mutation string. Example: 'query { guilds { id name } }'. | |
| headers | No | JSON stringified object of extra HTTP headers for the request. | |
| endpoint | No | Optional target GraphQL HTTP/HTTPS URL to dynamically switch endpoint before execution. | |
| variables | No | JSON stringified object of variables. Example: '{"id": "123"}'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it does so well: it discloses that the tool performs remote operations, that mutations modify persistent state, that authentication is inherited from the environment, and that failures return an errors list. These are the key behavioral facts an agent needs beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is organized into clear warning, prerequisite, security, and return-value statements with no filler. It is slightly longer than a minimal two-sentence description, but each section contributes a distinct piece of operational knowledge.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given four parameters and no output schema or annotations, the description covers the essential operating context: when to verify schema, mutation risk, authentication model, and expected return structure. No critical information needed to call the tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3; the description adds value by warning that the required query string may contain operations that mutate persistent state, and by noting the return shape. It does not repeat schema descriptions, but provides meaningful semantic context for the query parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific action verb ('Execute') and target ('GraphQL operations ... against the federated system'), distinguishing this as the operation-execution tool while the sibling 'introspect-schema' is referenced only for schema verification. The clarification that it handles both queries and mutations further disambiguates its role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly names the sibling tool as a prerequisite step ('Verify schema structure using introspect-schema before executing complex queries'), and warns to execute mutations only when a state change is intended. This gives the agent clear when-to-use and when-not-to-use guidance for mutation operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
The two tools have clearly distinct purposes: one executes queries/mutations, the other retrieves schema metadata. No overlap in functionality.
Both names follow a consistent verb-noun pattern with dashes (query-graphql, introspect-schema), making them predictable and readable.
With only 2 tools, the server is minimal but covers the essential GraphQL operations. It could benefit from a few more tools for advanced use cases, but it's not overly sparse.
The server provides the core GraphQL operations: executing queries/mutations and introspecting the schema. This is a complete surface for basic GraphQL interaction.
Maintenance
Related MCP Connectors
The official MCP Server for the Mux API
The official MCP Server from Mia-Platform to interact with Mia-Platform Console
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
- SupabaseOAuthcom.supabase
MCP server for interacting with the Supabase platform
Related MCP Servers
- MIT
- AlicenseNot gradedqualityFmaintenanceA MCP server that exposes GraphQL schema information to LLMs like Claude. This server allows an LLM to explore and understand large GraphQL schemas through a set of specialized tools, without needing to load the whole schema into the context5747MIT
- AlicenseAqualityDmaintenanceGraphQL MCP Server that acts as a bridge allowing MCP clients (like Cursor or Claude Desktop) to interact with target GraphQL APIs through standard tools for schema introspection and operation execution.2203MIT
- AlicenseNot gradedqualityDmaintenanceMCP that can proxy any GraphQL API and expose graphql operations as mcp tools.4518Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/letoribo/mcp-graphql-enhanced'
If you have feedback or need assistance with the MCP directory API, please join our Discord server