graphql-mcp
Version:
A Model Context Protocol server that enables LLMs to interact with GraphQL APIs through dynamic schema introspection and query execution
68 lines • 1.68 kB
JSON
{
"name": "graphql-mcp",
"version": "1.2.0",
"type": "module",
"description": "A Model Context Protocol server that enables LLMs to interact with GraphQL APIs through dynamic schema introspection and query execution",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"bin": {
"graphql-mcp": "dist/server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/server.ts",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"graphql",
"mcp",
"model-context-protocol",
"llm",
"ai",
"schema-introspection",
"query-execution"
],
"author": "noamski",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/noamski/graphql-mcp.git"
},
"bugs": {
"url": "https://github.com/noamski/graphql-mcp/issues"
},
"homepage": "https://github.com/noamski/graphql-mcp#readme",
"files": [
"dist/",
"examples/",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"ts-jest": "^29.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}