Mcp Graphql Introspection — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Graphql Introspection (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.
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#### Click the button to install: #### Or install manually: 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"]
}
}
}#### Alternative with direct URL:
{
"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"]
}
}
}#### Alternative with direct URL:
{
"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"]
}
}
}#### Alternative with direct URL:
{
"mcpServers": {
"graphql-introspection": {
"command": "npx",
"args": ["mcp-graphql-introspection", "https://api.example.com/graphql"]
}
}
}npm install
npm run buildThis MCP server is licensed under the MIT License. This allows you to freely use, modify, and distribute the software.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.