-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.94 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.94 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "api-docs-mcp",
"version": "1.0.23",
"description": "MCP server for API and GraphQL documentation and search",
"homepage": "https://github.com/EliFuzz/api-docs-mcp#readme",
"repository": {
"type": "git",
"url": "https://github.com/EliFuzz/api-docs-mcp.git"
},
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"api-docs-mcp": "build/index.js"
},
"files": [
"build",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && tsc-alias",
"start": "node --env-file=.env build/index.js",
"dev": "tsc --watch",
"test": "node --import tsx --test example/**/*.test.ts",
"test:watch": "node --import tsx --test --watch example/**/*.test.ts",
"inspect": "mcp-inspector --transport stdio tsx --watch --env-file=.env src/index.ts"
},
"keywords": [
"mcp",
"graphql",
"openapi",
"grpc",
"documentation",
"api-docs"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@apidevtools/swagger-parser": "12.1.0",
"@graphql-tools/graphql-file-loader": "8.1.8",
"@graphql-tools/load": "8.1.7",
"@graphql-tools/url-loader": "9.0.5",
"@graphql-tools/utils": "10.11.0",
"@modelcontextprotocol/sdk": "1.25.1",
"graphql": "16.12.0",
"module-alias": "2.2.3",
"proto-parser": "^0.0.9",
"zod": "4.2.1",
"protobufjs": "8.0.0"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "0.18.0",
"@types/js-yaml": "4.0.9",
"@types/node": "25.0.3",
"@typescript-eslint/eslint-plugin": "8.50.1",
"@typescript-eslint/parser": "8.50.1",
"concurrently": "9.2.1",
"cross-env": "10.1.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"js-yaml": "4.1.1",
"tsc-alias": "1.8.16",
"tsx": "4.21.0",
"typescript": "5.9.3"
}
}