-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.48 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.48 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
{
"name": "mcp-openapi",
"version": "0.3.0",
"mcpName": "io.github.Docat0209/openapi",
"description": "LLM-aware OpenAPI/Swagger to MCP tools converter. Point at any API spec, get instant MCP tools.",
"type": "module",
"bin": {
"mcp-openapi": "./dist/bin/mcp-openapi.js"
},
"exports": {
".": "./dist/src/index.js",
"./smithery": "./dist/src/smithery.js"
},
"smithery": {
"entryPoint": "./dist/src/smithery.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@metrichor/jmespath": "^0.3.1",
"@modelcontextprotocol/sdk": "^1.12.0",
"@smithery/sdk": "^4.3.0",
"esbuild": "^0.27.4",
"openapi-types": "^12.1.3",
"yaml": "^2.6.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"openapi",
"swagger",
"model-context-protocol",
"ai",
"llm",
"api",
"tools"
],
"license": "MIT",
"homepage": "https://github.com/Docat0209/mcp-openapi#readme",
"repository": {
"type": "git",
"url": "https://github.com/Docat0209/mcp-openapi"
},
"bugs": {
"url": "https://github.com/Docat0209/mcp-openapi/issues"
}
}