MCP Server
Maintained
MIT
io.github.Docat0209/graphql MCP Server
io.github.Docat0209/graphql
What is the io.github.Docat0209/graphql MCP server?
Turn any GraphQL API into MCP tools. Zero config, zero code.
How to install io.github.Docat0209/graphql
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"graphql": {
"command": "npx",
"args": [
"-y",
"graphql-to-mcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"graphql": {
"command": "npx",
"args": [
"-y",
"graphql-to-mcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"graphql": {
"command": "npx",
"args": [
"-y",
"graphql-to-mcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"graphql": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"graphql-to-mcp"
]
}
}
}Claude Code
claude mcp add graphql -- npx -y graphql-to-mcpRelated MCP servers
io.github.Docat0209/openapi
Maintained
Turn any OpenAPI/Swagger spec into MCP tools. Zero config, zero code.
3
View repository →TypeScript
MIT