forked from janwilmake/openapi-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 774 Bytes
/
package.json
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
{
"name": "openapi-mcp-server",
"keywords": [
"openapi",
"mcp",
"server",
"proxy"
],
"version": "1.0.0",
"license": "MIT",
"type": "module",
"bin": {
"openapi-mcp-server": "openapi-mcp.js"
},
"description": "MCP server for interacting with APIs defined in OpenAPI specifications",
"main": "openapi-mcp.js",
"files": [
"openapi-mcp.js",
"README.md"
],
"scripts": {
"start": "node openapi-mcp.js run",
"init": "node openapi-mcp.js init",
"postinstall": "chmod +x openapi-mcp.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"undici": "^5.28.4",
"js-yaml": "^4.1.0"
},
"engines": {
"node": ">=16.17.0"
},
"author": ""
}