nagoc.work.mcp 1.0.0 → 1.0.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 +8 -35
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,26 +1,25 @@
|
|
|
1
1
|
# nagoc.work.mcp
|
|
2
2
|
|
|
3
|
-
A free Model Context Protocol (MCP) server that dynamically connects any MCP-compatible AI client (Claude Desktop, Cursor, Windsurf, Zed, etc.) to
|
|
3
|
+
A free Model Context Protocol (MCP) server that dynamically connects any MCP-compatible AI client (Claude Desktop, Cursor, Windsurf, Zed, etc.) to your digital wallet platform API.
|
|
4
4
|
|
|
5
5
|
Because it fetches the full OpenAPI schema automatically at runtime, it requires **zero manual endpoint maintenance** — any new endpoints added to the API are instantly available as AI tools.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
9
9
|
- **Dynamic** — fetches and parses the live OpenAPI schema on every startup
|
|
10
|
-
- **Whitelabel-ready** — agencies can point it at their own custom domain via `API_BASE_URL`
|
|
11
10
|
- **Secure** — your API key is passed via an environment variable and never stored in code
|
|
12
11
|
- **Zero install** — runs via `npx` with no cloning required
|
|
12
|
+
- **Multi-platform** — works with Claude Desktop, Cursor, Windsurf, Zed, and any stdio MCP client
|
|
13
13
|
|
|
14
14
|
## Requirements
|
|
15
15
|
|
|
16
16
|
- Node.js v18 or above
|
|
17
|
-
- An active API key from your
|
|
17
|
+
- An active API key from your account
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## Setup (Claude Desktop)
|
|
20
20
|
|
|
21
|
-
Open your `claude_desktop_config.json` file and add the following
|
|
21
|
+
Open your `claude_desktop_config.json` file and add the following:
|
|
22
22
|
|
|
23
|
-
**Standard setup:**
|
|
24
23
|
```json
|
|
25
24
|
{
|
|
26
25
|
"mcpServers": {
|
|
@@ -28,30 +27,14 @@ Open your `claude_desktop_config.json` file and add the following block:
|
|
|
28
27
|
"command": "npx",
|
|
29
28
|
"args": ["-y", "nagoc.work.mcp"],
|
|
30
29
|
"env": {
|
|
31
|
-
"API_KEY": "your-api-key-here"
|
|
30
|
+
"API_KEY": "paste-your-api-key-here"
|
|
32
31
|
}
|
|
33
32
|
}
|
|
34
33
|
}
|
|
35
34
|
}
|
|
36
35
|
```
|
|
37
36
|
|
|
38
|
-
|
|
39
|
-
```json
|
|
40
|
-
{
|
|
41
|
-
"mcpServers": {
|
|
42
|
-
"nagoc.work.mcp": {
|
|
43
|
-
"command": "npx",
|
|
44
|
-
"args": ["-y", "nagoc.work.mcp"],
|
|
45
|
-
"env": {
|
|
46
|
-
"API_BASE_URL": "https://api.your-custom-domain.com",
|
|
47
|
-
"API_KEY": "your-api-key-here"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
Save the file and restart Claude Desktop. The MCP server icon will appear automatically.
|
|
37
|
+
Save the file and restart Claude Desktop. The MCP server will connect automatically.
|
|
55
38
|
|
|
56
39
|
## Supported Clients
|
|
57
40
|
|
|
@@ -66,17 +49,7 @@ Any client that supports **local stdio MCP servers**:
|
|
|
66
49
|
| Variable | Required | Description |
|
|
67
50
|
|---|---|---|
|
|
68
51
|
| `API_KEY` | ✅ Yes | Your secret API key |
|
|
69
|
-
| `API_BASE_URL` | ❌ Optional | Custom
|
|
70
|
-
|
|
71
|
-
## Local Development
|
|
72
|
-
|
|
73
|
-
```bash
|
|
74
|
-
git clone <this-repo>
|
|
75
|
-
cd nagoc-bm-mcp
|
|
76
|
-
npm install
|
|
77
|
-
npm run build
|
|
78
|
-
API_KEY=your-key node dist/index.js
|
|
79
|
-
```
|
|
52
|
+
| `API_BASE_URL` | ❌ Optional | Custom API endpoint URL (contact us for details) |
|
|
80
53
|
|
|
81
54
|
## License
|
|
82
55
|
|