Skip to content
VS Code

mcp graphql enhanced for VS Code

io.github.letoribo/mcp-graphql-enhanced

GraphQL gateway for LLMs. Handles huge GitHub GraphQL & @neo4j/graphql schemas without crashing

client:VS Code transport:stdio runtime:npm

Install mcp graphql enhanced in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "endpoint",
      "description": "ENDPOINT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "headers",
      "description": "HEADERS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "allow-mutations",
      "description": "ALLOW_MUTATIONS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "name",
      "description": "NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "schema",
      "description": "SCHEMA",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-port",
      "description": "MCP_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "enable-http",
      "description": "ENABLE_HTTP",
      "password": true
    }
  ],
  "servers": {
    "mcp-graphql-enhanced": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@letoribo/mcp-graphql-enhanced"
      ],
      "env": {
        "ENDPOINT": "${input:endpoint}",
        "HEADERS": "${input:headers}",
        "ALLOW_MUTATIONS": "${input:allow-mutations}",
        "NAME": "${input:name}",
        "SCHEMA": "${input:schema}",
        "MCP_PORT": "${input:mcp-port}",
        "ENABLE_HTTP": "${input:enable-http}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp graphql enhanced in other clients