opamcp 1.0.2 → 1.0.4
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 +6 -6
- package/dist/index.js +97 -97
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,10 +8,10 @@ OpenAPI 스펙 URL 하나 던져주면, AI가 알아서 API 구조를 탐색할
|
|
|
8
8
|
## 어떻게 쓰나요?
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
npx -y opamcp https://petstore3.swagger.io/api/v3/openapi.json
|
|
11
|
+
npx -y opamcp@latest https://petstore3.swagger.io/api/v3/openapi.json
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
끝. 진짜 이게 다입니다.
|
|
14
|
+
끝. 진짜 이게 다입니다. (`@latest` 붙이면 항상 최신 버전)
|
|
15
15
|
|
|
16
16
|
## Claude Desktop / Cursor 설정
|
|
17
17
|
|
|
@@ -20,7 +20,7 @@ npx -y opamcp https://petstore3.swagger.io/api/v3/openapi.json
|
|
|
20
20
|
"mcpServers": {
|
|
21
21
|
"my-api": {
|
|
22
22
|
"command": "npx",
|
|
23
|
-
"args": ["-y", "opamcp", "https://your-api.com/openapi.json"]
|
|
23
|
+
"args": ["-y", "opamcp@latest", "https://your-api.com/openapi.json"]
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -77,10 +77,10 @@ No more pasting entire spec documents every time someone asks "how do I use this
|
|
|
77
77
|
## Quick Start
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
npx -y opamcp https://petstore3.swagger.io/api/v3/openapi.json
|
|
80
|
+
npx -y opamcp@latest https://petstore3.swagger.io/api/v3/openapi.json
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
-
That's it. Really.
|
|
83
|
+
That's it. Really. (`@latest` ensures you always get the newest version)
|
|
84
84
|
|
|
85
85
|
## Claude Desktop / Cursor Setup
|
|
86
86
|
|
|
@@ -89,7 +89,7 @@ That's it. Really.
|
|
|
89
89
|
"mcpServers": {
|
|
90
90
|
"my-api": {
|
|
91
91
|
"command": "npx",
|
|
92
|
-
"args": ["-y", "opamcp", "https://your-api.com/openapi.json"]
|
|
92
|
+
"args": ["-y", "opamcp@latest", "https://your-api.com/openapi.json"]
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
}
|