nagoc.work.mcp 1.0.1 → 1.0.3
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 +16 -0
- package/dist/index.js +21 -53
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -20,6 +20,22 @@ Because it fetches the full OpenAPI schema automatically at runtime, it requires
|
|
|
20
20
|
|
|
21
21
|
Open your `claude_desktop_config.json` file and add the following:
|
|
22
22
|
|
|
23
|
+
**Windows:**
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"mcpServers": {
|
|
27
|
+
"nagoc.work.mcp": {
|
|
28
|
+
"command": "cmd",
|
|
29
|
+
"args": ["/c", "npx", "-y", "nagoc.work.mcp"],
|
|
30
|
+
"env": {
|
|
31
|
+
"API_KEY": "paste-your-api-key-here"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
**macOS / Linux:**
|
|
23
39
|
```json
|
|
24
40
|
{
|
|
25
41
|
"mcpServers": {
|