@dilina0914/openapi-mcp 10.0.2 → 12.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 +19 -1
- package/dist/index.js +0 -0
- package/package.json +16 -17
package/README.md
CHANGED
|
@@ -5,6 +5,24 @@ A Model Context Protocol (MCP) server for parsing OpenAPI 3.0 specifications and
|
|
|
5
5
|
[](https://www.npmjs.com/package/@dilina0914/openapi-mcp)
|
|
6
6
|
[](https://nodejs.org/)
|
|
7
7
|
|
|
8
|
+
## What's New in 12.0.0
|
|
9
|
+
|
|
10
|
+
### Workflow Alignment
|
|
11
|
+
- Fully aligned with `sar-test-mcp` v12.0.0 and `http-capture-mcp` v12.0.0
|
|
12
|
+
- Updated 15-phase test generation workflow (previously 13 phases)
|
|
13
|
+
- Consistent with reorganized SARDevAgent and enhanced component configuration
|
|
14
|
+
|
|
15
|
+
### Role Clarification
|
|
16
|
+
- Complementary to code-first analysis from `sar-test-mcp`
|
|
17
|
+
- Provides API metadata when OpenAPI specs are available
|
|
18
|
+
- Useful for verifying entity schemas and endpoint structures
|
|
19
|
+
|
|
20
|
+
### IFS Cloud-Specific Use Cases
|
|
21
|
+
- Map projection service endpoints to OpenAPI operations
|
|
22
|
+
- Validate entity field types against projection definitions
|
|
23
|
+
- Discover action/function parameters from API specification
|
|
24
|
+
- Cross-reference code analysis results with API documentation
|
|
25
|
+
|
|
8
26
|
## What's New in 9.0.0
|
|
9
27
|
|
|
10
28
|
### Alignment & Documentation
|
|
@@ -12,7 +30,7 @@ A Model Context Protocol (MCP) server for parsing OpenAPI 3.0 specifications and
|
|
|
12
30
|
**✅ Complete System Alignment**
|
|
13
31
|
- Fully aligned with `sar-test-mcp` v9.0.0 and `http-capture-mcp` v9.0.0
|
|
14
32
|
- Consistent with updated workflow in SARDevAgent
|
|
15
|
-
- All three MCPs work seamlessly together in the 13-phase test generation workflow
|
|
33
|
+
- All three MCPs work seamlessly together in the 13-phase (updated to 15-phase in v12.0.0) test generation workflow
|
|
16
34
|
|
|
17
35
|
**📚 Documentation Updates**
|
|
18
36
|
- Updated integration examples to reflect current architecture
|
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": "12.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,17 +35,6 @@
|
|
|
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
|
-
},
|
|
49
38
|
"dependencies": {
|
|
50
39
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
51
40
|
"@readme/openapi-parser": "^2.6.0",
|
|
@@ -54,17 +43,27 @@
|
|
|
54
43
|
"yaml": "^2.8.2"
|
|
55
44
|
},
|
|
56
45
|
"devDependencies": {
|
|
57
|
-
"@ifs/logging": "workspace:*",
|
|
58
|
-
"@ifs/mcp-core": "workspace:*",
|
|
59
|
-
"@ifs/security": "workspace:*",
|
|
60
46
|
"@types/node": "^20.14.0",
|
|
61
47
|
"rimraf": "^5.0.7",
|
|
62
48
|
"tsup": "^8.5.1",
|
|
63
49
|
"tsx": "^4.15.4",
|
|
64
50
|
"typescript": "^5.4.5",
|
|
65
|
-
"vitest": "^1.6.0"
|
|
51
|
+
"vitest": "^1.6.0",
|
|
52
|
+
"@ifs/logging": "1.0.0",
|
|
53
|
+
"@ifs/mcp-core": "1.0.0",
|
|
54
|
+
"@ifs/security": "1.0.0"
|
|
66
55
|
},
|
|
67
56
|
"peerDependencies": {
|
|
68
57
|
"@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"
|
|
69
68
|
}
|
|
70
|
-
}
|
|
69
|
+
}
|