forked from vogler75/graphql-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 772 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "graphql-mcp-server",
"version": "1.0.0",
"description": "MCP server for GraphQL APIs with dynamic tool generation",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"start:http": "node src/index.js --transport http",
"start:http:port": "node src/index.js --transport http --port 8080",
"dev": "node --watch src/index.js",
"dev:http": "node --watch src/index.js --transport http"
},
"keywords": [
"mcp",
"graphql",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"express": "^5.0.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"yaml": "^2.8.0",
"zod": "^3.23.8"
}
}