@dilina0914/openapi-mcp 8.0.0 → 10.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.
Files changed (3) hide show
  1. package/README.md +14 -0
  2. package/dist/index.js +0 -0
  3. package/package.json +16 -17
package/README.md CHANGED
@@ -5,6 +5,20 @@ A Model Context Protocol (MCP) server for parsing OpenAPI 3.0 specifications and
5
5
  [![npm version](https://img.shields.io/npm/v/@dilina0914/openapi-mcp.svg)](https://www.npmjs.com/package/@dilina0914/openapi-mcp)
6
6
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg)](https://nodejs.org/)
7
7
 
8
+ ## What's New in 9.0.0
9
+
10
+ ### Alignment & Documentation
11
+
12
+ **✅ Complete System Alignment**
13
+ - Fully aligned with `sar-test-mcp` v9.0.0 and `http-capture-mcp` v9.0.0
14
+ - Consistent with updated workflow in SARDevAgent
15
+ - All three MCPs work seamlessly together in the 13-phase test generation workflow
16
+
17
+ **📚 Documentation Updates**
18
+ - Updated integration examples to reflect current architecture
19
+ - Clarified role in code-first test generation approach
20
+ - Enhanced troubleshooting guide
21
+
8
22
  ## What's New in 8.0.0
9
23
 
10
24
  ### Documentation & Setup
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": "8.0.0",
3
+ "version": "10.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/mcp-core": "1.0.0",
53
+ "@ifs/security": "1.0.0",
54
+ "@ifs/logging": "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
+ }