-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "anyapi-mcp-server",
"version": "2.0.2",
"description": "A universal MCP server that connects any REST API (via OpenAPI spec) to AI assistants, with GraphQL-style field selection and automatic schema inference.",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/quiloos39/anyapi-mcp-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/quiloos39/anyapi-mcp-server.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"openapi",
"rest-api",
"ai",
"graphql",
"claude",
"cursor",
"llm"
],
"bin": {
"anyapi-mcp": "build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"fast-xml-parser": "^5.3.5",
"graphql": "^16.10.0",
"js-yaml": "^4.1.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}