MCP Server

Bridges any GraphQL API to Claude Code — auto-generates MCP tools via schema introspection.

Remote serverstreamable-httpTypeScript

What is the MCP MCP server?

MCP MCP server is a hosted integration for AI assistants that speak the Model Context Protocol. Bridges any GraphQL API to Claude Code — auto-generates MCP tools via schema introspection.

What you get

A generic MCP (Model Context Protocol) server that bridges any GraphQL API to Claude Code. It introspects your GraphQL schema and exposes each query and mutation as an individual tool, letting Claude interact with your API directly.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

What the assistant can call

Once MCP is connected, these are the calls the assistant has available:

  • execute_graphql — Generic fallback — run any query or mutation (mutations rejected if GRAPHQL_INCLUDE_MUTATIONS=false)
  • get_type_details — Explore fields of a specific GraphQL type

Configuration and credentials

You will need 6 environment variables: GH_TOKEN, GRAPHQL_INTROSPECTION_URL, GRAPHQL_API_URL, GRAPHQL_TOKEN, GRAPHQL_INTROSPECTION_TOKEN, MCP_AUTH_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js >= 20

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp mcp server does with a few real requests.

Choosing this one

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP's toolset — execute_graphql, get_type_details — is a fair guide to whether it matches your workflow. It is maintained by murilojrpereira; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
execute_graphqlGeneric fallback — run any query or mutation (mutations rejected if GRAPHQL_INCLUDE_MUTATIONS=false)
get_type_detailsExplore fields of a specific GraphQL type

How to install the MCP MCP server

{
  "mcpServers": {
    "graphql-bridge": {
      "command": "npx",
      "args": ["-y", "mcp-graphql-bridge"],
      "env": {
        "GH_TOKEN": "your-value",
        "GRAPHQL_INTROSPECTION_URL": "your-value",
        "GRAPHQL_API_URL": "your-value",
        "GRAPHQL_TOKEN": "your-value",
        "GRAPHQL_INTROSPECTION_TOKEN": "your-value",
        "MCP_AUTH_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js >= 20
VariableDescriptionRequired
GH_TOKENCredential the server authenticates with.Yes
GRAPHQL_INTROSPECTION_URLEndpoint or connection string the server talks to.Yes
GRAPHQL_API_URLEndpoint or connection string the server talks to.Yes
GRAPHQL_TOKENCredential the server authenticates with.Yes
GRAPHQL_INTROSPECTION_TOKENCredential the server authenticates with.Yes
MCP_AUTH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP to execute graphql.
  • Use MCP to get type details.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (execute_graphql, get_type_details) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.