
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
mcp-graphql-introspection
Advanced tools
A Model Context Protocol server that provides GraphQL schema introspection capabilities
A Node.js server implementing the Model Context Protocol (MCP) that provides GraphQL schema introspection capabilities. This server enables LLMs to inspect GraphQL schemas and retrieve information about available queries, mutations, and types.
introspect_schema
get_graphql_gql_queries
get_graphql_gql_mutations
get_graphql_type_details
typeNames (array of strings): Names of the GraphQL types to inspectImportant: A GraphQL endpoint is required when starting the server. The server will not start without one.
# Using --endpoint flag
npx mcp-graphql-introspection --endpoint https://api.example.com/graphql
# Using -e shorthand
npx mcp-graphql-introspection -e https://api.example.com/graphql
# Direct URL as first argument
npx mcp-graphql-introspection https://api.example.com/graphql
# Error - no endpoint provided
npx mcp-graphql-introspection
# Error: GraphQL endpoint is required. Please provide an endpoint using --endpoint flag or as a direct URL argument.
# Must provide an endpoint
claude mcp add graphql-introspection npx mcp-graphql-introspection https://api.example.com/graphql
# Or with --endpoint flag
claude mcp add graphql-introspection npx mcp-graphql-introspection --endpoint https://api.example.com/graphql
Go to Cursor Settings -> MCP -> Add new MCP Server. Name to your liking, use command type with the command npx mcp-graphql-introspection. You can also verify config or add command like arguments via clicking Edit.
{
"mcpServers": {
"graphql-introspection": {
"command": "npx",
"args": ["mcp-graphql-introspection", "--endpoint", "https://api.example.com/graphql"]
}
}
}
{
"mcpServers": {
"graphql-introspection": {
"command": "npx",
"args": ["mcp-graphql-introspection", "https://api.example.com/graphql"]
}
}
}
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"graphql-introspection": {
"command": "npx",
"args": ["mcp-graphql-introspection", "--endpoint", "https://api.example.com/graphql"]
}
}
}
{
"mcpServers": {
"graphql-introspection": {
"command": "npx",
"args": ["mcp-graphql-introspection", "https://api.example.com/graphql"]
}
}
}
Add this to your VS Code settings:
{
"mcpServers": {
"graphql-introspection": {
"command": "npx",
"args": ["mcp-graphql-introspection", "--endpoint", "https://api.example.com/graphql"]
}
}
}
{
"mcpServers": {
"graphql-introspection": {
"command": "npx",
"args": ["mcp-graphql-introspection", "https://api.example.com/graphql"]
}
}
}
npm install
npm run build
This MCP server is licensed under the MIT License. This allows you to freely use, modify, and distribute the software.
FAQs
A Model Context Protocol server that provides GraphQL schema introspection capabilities
The npm package mcp-graphql-introspection receives a total of 1 weekly downloads. As such, mcp-graphql-introspection popularity was classified as not popular.
We found that mcp-graphql-introspection demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.