@dilina0914/openapi-mcp 6.0.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/index.js +0 -0
- package/package.json +17 -16
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ Inside the `.vscode` folder, create a file named `mcp.json` with the following c
|
|
|
67
67
|
"command": "npx",
|
|
68
68
|
"args": [
|
|
69
69
|
"-y",
|
|
70
|
-
"@dilina0914/openapi-mcp@
|
|
70
|
+
"@dilina0914/openapi-mcp@7.0.0"
|
|
71
71
|
],
|
|
72
72
|
"env": {
|
|
73
73
|
"LOG_LEVEL": "info",
|
|
@@ -111,7 +111,7 @@ In the MCP settings, add a new server with the following configuration:
|
|
|
111
111
|
"command": "npx",
|
|
112
112
|
"args": [
|
|
113
113
|
"-y",
|
|
114
|
-
"@dilina0914/openapi-mcp@
|
|
114
|
+
"@dilina0914/openapi-mcp@7.0.0"
|
|
115
115
|
],
|
|
116
116
|
"env": {
|
|
117
117
|
"LOG_LEVEL": "info"
|
|
@@ -137,7 +137,7 @@ Add to your Claude Desktop configuration file:
|
|
|
137
137
|
"mcpServers": {
|
|
138
138
|
"openapi": {
|
|
139
139
|
"command": "npx",
|
|
140
|
-
"args": ["-y", "@dilina0914/openapi-mcp@
|
|
140
|
+
"args": ["-y", "@dilina0914/openapi-mcp@7.0.0"],
|
|
141
141
|
"env": {
|
|
142
142
|
"LOG_LEVEL": "info"
|
|
143
143
|
}
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dilina0914/openapi-mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "MCP server for parsing OpenAPI specifications and extracting Cloud ERP service metadata",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -35,6 +35,17 @@
|
|
|
35
35
|
"access": "public",
|
|
36
36
|
"registry": "https://registry.npmjs.org/"
|
|
37
37
|
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsup",
|
|
40
|
+
"build:dev": "tsc",
|
|
41
|
+
"dev": "tsx watch src/index.ts",
|
|
42
|
+
"start": "node dist/index.js",
|
|
43
|
+
"test": "vitest",
|
|
44
|
+
"test:unit": "vitest run",
|
|
45
|
+
"typecheck": "tsc --noEmit",
|
|
46
|
+
"clean": "rimraf dist",
|
|
47
|
+
"prepublishOnly": "pnpm run build"
|
|
48
|
+
},
|
|
38
49
|
"dependencies": {
|
|
39
50
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
40
51
|
"@readme/openapi-parser": "^2.6.0",
|
|
@@ -43,27 +54,17 @@
|
|
|
43
54
|
"yaml": "^2.8.2"
|
|
44
55
|
},
|
|
45
56
|
"devDependencies": {
|
|
57
|
+
"@ifs/logging": "workspace:*",
|
|
58
|
+
"@ifs/mcp-core": "workspace:*",
|
|
59
|
+
"@ifs/security": "workspace:*",
|
|
46
60
|
"@types/node": "^20.14.0",
|
|
47
61
|
"rimraf": "^5.0.7",
|
|
48
62
|
"tsup": "^8.5.1",
|
|
49
63
|
"tsx": "^4.15.4",
|
|
50
64
|
"typescript": "^5.4.5",
|
|
51
|
-
"vitest": "^1.6.0"
|
|
52
|
-
"@ifs/logging": "1.0.0",
|
|
53
|
-
"@ifs/security": "1.0.0",
|
|
54
|
-
"@ifs/mcp-core": "1.0.0"
|
|
65
|
+
"vitest": "^1.6.0"
|
|
55
66
|
},
|
|
56
67
|
"peerDependencies": {
|
|
57
68
|
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
58
|
-
},
|
|
59
|
-
"scripts": {
|
|
60
|
-
"build": "tsup",
|
|
61
|
-
"build:dev": "tsc",
|
|
62
|
-
"dev": "tsx watch src/index.ts",
|
|
63
|
-
"start": "node dist/index.js",
|
|
64
|
-
"test": "vitest",
|
|
65
|
-
"test:unit": "vitest run",
|
|
66
|
-
"typecheck": "tsc --noEmit",
|
|
67
|
-
"clean": "rimraf dist"
|
|
68
69
|
}
|
|
69
|
-
}
|
|
70
|
+
}
|