
Graphql
Expose an existing GraphQL API as callable MCP tools so your coding agent can query and mutate data without hand-writing tool wrappers.
Overview
io.github.Docat0209/graphql is a Build-phase MCP server that exposes any GraphQL API as MCP tools without custom adapter code.
What is this MCP server?
- Turns any GraphQL endpoint into MCP tools with zero configuration
- npm package graphql-to-mcp v0.1.4 with stdio transport
- No code generation step—point at the API and register the server
- Fits solo builders who already have GraphQL (Hasura, Apollo, custom) and want agent access fast
- Server version 0.1.4
- npm package identifier graphql-to-mcp
What problem does it solve?
You want your AI agent to use your GraphQL API but do not want to hand-author MCP tools for every operation.
Who is it for?
Builders with an existing GraphQL API who need quick agent integration for queries, mutations, and ops debugging.
Skip if: Teams without GraphQL, or anyone who needs fine-grained tool policies and custom auth flows beyond what a generic bridge provides.
What do I get? / Deliverables
After you register the stdio npm server, your agent can invoke GraphQL operations as structured MCP tools against your live endpoint.
- MCP tools derived from your GraphQL schema operations
- Agent-callable queries and mutations without custom MCP code
- stdio MCP registration ready for local dev workflows
Recommended MCP Servers
Journey fit
Integrating third-party and internal APIs into the agent stack happens while you are building product features, not during ideation or launch-only work. GraphQL-to-MCP is a bridge layer: it wires remote schemas into agent tooling with no custom server code.
How it compares
Schema-to-MCP bridge for GraphQL, not a hosted GraphQL server or a hand-written skill per endpoint.
Common Questions / FAQ
Who is io.github.Docat0209/graphql for?
Solo builders and small teams who already use GraphQL and want Claude Code or Cursor to call that API through MCP without writing tool wrappers.
When should I use io.github.Docat0209/graphql?
Use it during build when you are wiring backends into agent workflows—for example admin scripts, data fixes, or feature exploration against your GraphQL schema.
How do I add io.github.Docat0209/graphql to my agent?
Install the npm package graphql-to-mcp (v0.1.4), configure stdio MCP in Claude Code or Cursor, and point the server at your GraphQL endpoint and auth settings per the repo README.