mcp4gql - GraphQL MCP Server
@jorgeraad
mcp4gql - GraphQL MCP Server について
MCP server for interacting with a GraphQL server
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"mcp4gql": {
"command": "npx",
"type": "stdio",
"args": [
"-y",
"mcp4gql"
],
"env": {
"GRAPHQL_ENDPOINT": "YOUR_GRAPHQL_ENDPOINT_URL",
"AUTH_TOKEN": "YOUR_OPTIONAL_AUTH_TOKEN"
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is mcp4gql?
mcp4gql is a Node.js/TypeScript server that implements the Model Context Protocol (MCP), acting as a bridge for MCP clients like Cursor to interact with a target GraphQL API. It is intended for developers who want to query and introspect GraphQL APIs through MCP-compatible tools.
How to use mcp4gql?
Configure the environment variables GRAPHQL_ENDPOINT (the target GraphQL API URL) and optionally AUTH_TOKEN (a bearer token). Then configure an MCP client such as Cursor or Claude Desktop to run the server via npx, passing those environment variables. The server communicates over stdio and exposes the tools introspectGraphQLSchema and executeGraphQLOperation to the client.
Key features of mcp4gql
- Implements the MCP Server class from
@modelcontextprotocol/sdk - Communicates with clients via standard input/output (stdio transport)
- Uses
axiosto send requests to the configured GraphQL endpoint - Exposes
introspectGraphQLSchematool for fetching the API schema - Exposes
executeGraphQLOperationtool for running queries or mutations
Use cases of mcp4gql
- Exploring a GraphQL API’s schema from within an MCP-enabled editor
- Running ad-hoc GraphQL queries or mutations without leaving the development environment
- Automating GraphQL operations through MCP workflows in Cursor or Claude Desktop
FAQ from mcp4gql
What tools does mcp4gql expose to MCP clients?
It exposes introspectGraphQLSchema to fetch the target API’s schema via introspection, and executeGraphQLOperation to execute arbitrary GraphQL queries or mutations with optional variables and operation name.
How do I configure mcp4gql for Cursor?
In Cursor MCP Settings, add a new global MCP server with the command npx -y mcp4gql and the required environment variables GRAPHQL_ENDPOINT and optional AUTH_TOKEN.
How do I configure mcp4gql for Claude Desktop?
In Claude Desktop settings, open Developer > Edit Config and add an entry under mcpServers using npx with -y mcp4gql as arguments and the same environment variables.
What dependencies does mcp4gql require?
It is a Node.js/TypeScript project that depends on @modelcontextprotocol/sdk, axios, and the standard Node.js runtime. It is run via npx, so Node.js must be installed.
How does authentication work with the target GraphQL API?
Authentication is optional. If the AUTH_TOKEN environment variable is set, the server includes an Authorization: Bearer <token> header in all GraphQL requests.
「その他」の他のコンテンツ
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
Awesome Mcp Servers
punkpeyeA collection of MCP servers.
Reactive Resume
amruthpillaiA one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers
🪟 Windows-MCP
CursorTouchMCP Server for Computer Use in Windows
コメント