{ "name": "mcp-graphql-bridge", "version": "2.1.1", "description": "Generic MCP server that bridges any GraphQL API to Claude Code — one tool per query and mutation, auto-discovered via schema introspection.", "type": "module", "main": "dist/index.js", "bin": { "mcp-graphql-bridge": "dist/index.js" }, "files": [ "dist", "README.md", "LICENSE", "server.json" ], "publishConfig": { "access": "public" }, "engines": { "node": ">=20.0" }, "keywords": [ "mcp", "model-context-protocol", "graphql", "claude", "ai", "llm", "bridge", "anthropic" ], "license": "MIT", "mcpName": "io.github.murilojrpereira/mcp-graphql-bridge", "repository": { "type": "git", "url": "https://github.com/murilojrpereira/mcp-graphql-bridge.git" }, "bugs": { "url": "https://github.com/murilojrpereira/mcp-graphql-bridge/issues" }, "homepage": "https://github.com/murilojrpereira/mcp-graphql-bridge#readme", "scripts": { "prepare": "npm run build", "build": "tsc", "start": "node dist/index.js", "start:http": "MCP_TRANSPORT=http node dist/index.js", "dev": "nodemon --watch \"src/**\" --ext \"ts\" --exec \"npm run build && npm run start\"", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage" }, "dependencies": { "@modelcontextprotocol/node": "^2.0.0", "@modelcontextprotocol/server": "^2.0.0", "dotenv": "^16.4.7", "graphql": "^16.10.0", "graphql-request": "^7.1.2", "zod": "^4.5.2" }, "devDependencies": { "@types/node": "^22.0.0", "@vitest/coverage-v8": "^4.1.0", "nodemon": "^3.0.0", "typescript": "^5.9.2", "vitest": "^4.1.0" } }