swagger-parser-mcp-server 2.0.4 → 2.1.1
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 +12 -0
- package/dist/index.js +0 -0
- package/package.json +19 -17
package/README.md
CHANGED
|
@@ -159,6 +159,18 @@ npm install swagger-parser-mcp-server
|
|
|
159
159
|
1. URL이 CORS를 허용하는지 확인하세요
|
|
160
160
|
2. JSON 형식이 올바른 Swagger/OpenAPI 형식인지 확인하세요
|
|
161
161
|
|
|
162
|
+
|
|
163
|
+
### Cursor 에서 MCP 설정시 에러 로그 발생
|
|
164
|
+
> 서버 실행에서 에러나는 경우
|
|
165
|
+
|
|
166
|
+
1. npx cache 삭제
|
|
167
|
+
```
|
|
168
|
+
npm cache clean --force
|
|
169
|
+
```
|
|
170
|
+
2. IDE 종료후 재 실행
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
162
174
|
## 라이선스
|
|
163
175
|
|
|
164
176
|
MIT
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swagger-parser-mcp-server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "MCP server for parsing Swagger/OpenAPI JSON files",
|
|
5
|
+
"packageManager": "pnpm@9.0.0",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|
|
@@ -15,6 +16,22 @@
|
|
|
15
16
|
"README.md",
|
|
16
17
|
"package.json"
|
|
17
18
|
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsc",
|
|
21
|
+
"dev": "tsx src/index.ts",
|
|
22
|
+
"start": "node dist/index.js",
|
|
23
|
+
"test": "jest",
|
|
24
|
+
"test:watch": "jest --watch",
|
|
25
|
+
"test:coverage": "jest --coverage",
|
|
26
|
+
"lint": "eslint .",
|
|
27
|
+
"lint:fix": "eslint . --fix",
|
|
28
|
+
"format": "prettier --write .",
|
|
29
|
+
"format:check": "prettier --check .",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"check-all": "pnpm run typecheck && pnpm run lint && pnpm run format:check",
|
|
32
|
+
"prepublishOnly": "pnpm run check-all && pnpm run build",
|
|
33
|
+
"preinstall": "npx only-allow pnpm"
|
|
34
|
+
},
|
|
18
35
|
"keywords": [
|
|
19
36
|
"mcp",
|
|
20
37
|
"swagger",
|
|
@@ -57,20 +74,5 @@
|
|
|
57
74
|
"tsx": "^4.7.0",
|
|
58
75
|
"typescript": "^5.3.0",
|
|
59
76
|
"typescript-eslint": "^8.38.0"
|
|
60
|
-
},
|
|
61
|
-
"scripts": {
|
|
62
|
-
"build": "tsc",
|
|
63
|
-
"dev": "tsx src/index.ts",
|
|
64
|
-
"start": "node dist/index.js",
|
|
65
|
-
"test": "jest",
|
|
66
|
-
"test:watch": "jest --watch",
|
|
67
|
-
"test:coverage": "jest --coverage",
|
|
68
|
-
"lint": "eslint .",
|
|
69
|
-
"lint:fix": "eslint . --fix",
|
|
70
|
-
"format": "prettier --write .",
|
|
71
|
-
"format:check": "prettier --check .",
|
|
72
|
-
"typecheck": "tsc --noEmit",
|
|
73
|
-
"check-all": "pnpm run typecheck && pnpm run lint && pnpm run format:check",
|
|
74
|
-
"preinstall": "npx only-allow pnpm"
|
|
75
77
|
}
|
|
76
|
-
}
|
|
78
|
+
}
|