package.json•1 kB
{
"name": "mcp4gql",
"author": "jorgeraad",
"version": "1.0.0",
"main": "dist/server.js",
"bin": {
"mcp4gql": "dist/server.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --watch src --ext ts --exec ts-node src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"description": "This project is a Node.js/TypeScript server that implements the Model Context Protocol (MCP). It acts as a bridge, allowing MCP clients (like Cursor) to interact with a target GraphQL API.",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.23.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^20.14.9",
"@types/node-fetch": "^2.6.11",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"license": "MIT"
}