mcp-dokploy-fullapi-proxy 1.0.1 → 1.0.2
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 +25 -28
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,10 +11,7 @@ A single MCP tool `dokploy(method, params?)` acts as a thin proxy to Dokploy's t
|
|
|
11
11
|
## Setup
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
|
|
15
|
-
cd mcp-dokploy-fullapi-proxy
|
|
16
|
-
npm install
|
|
17
|
-
npm run build
|
|
14
|
+
npx -y mcp-dokploy-fullapi-proxy
|
|
18
15
|
```
|
|
19
16
|
|
|
20
17
|
## Configuration
|
|
@@ -41,8 +38,8 @@ Add to `claude_desktop_config.json`:
|
|
|
41
38
|
{
|
|
42
39
|
"mcpServers": {
|
|
43
40
|
"dokploy-fullapi-proxy": {
|
|
44
|
-
"command": "
|
|
45
|
-
"args": ["
|
|
41
|
+
"command": "npx",
|
|
42
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
46
43
|
"env": {
|
|
47
44
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
48
45
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -73,7 +70,7 @@ Get your API token from Dokploy: **Settings → Profile → API/Token Section**.
|
|
|
73
70
|
claude mcp add dokploy-fullapi-proxy \
|
|
74
71
|
-e DOKPLOY_URL=https://your-dokploy-instance.com/api \
|
|
75
72
|
-e DOKPLOY_TOKEN=your-api-token \
|
|
76
|
-
--
|
|
73
|
+
-- npx -y mcp-dokploy-fullapi-proxy
|
|
77
74
|
```
|
|
78
75
|
|
|
79
76
|
Or add to `.mcp.json` in your project root (Windows: use `cmd /c` wrapper):
|
|
@@ -82,8 +79,8 @@ Or add to `.mcp.json` in your project root (Windows: use `cmd /c` wrapper):
|
|
|
82
79
|
{
|
|
83
80
|
"mcpServers": {
|
|
84
81
|
"dokploy-fullapi-proxy": {
|
|
85
|
-
"command": "
|
|
86
|
-
"args": ["
|
|
82
|
+
"command": "npx",
|
|
83
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
87
84
|
"env": {
|
|
88
85
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
89
86
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -118,8 +115,8 @@ Add to `~/.cursor/mcp.json` (global) or `.cursor/mcp.json` (project):
|
|
|
118
115
|
{
|
|
119
116
|
"mcpServers": {
|
|
120
117
|
"dokploy-fullapi-proxy": {
|
|
121
|
-
"command": "
|
|
122
|
-
"args": ["
|
|
118
|
+
"command": "npx",
|
|
119
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
123
120
|
"env": {
|
|
124
121
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
125
122
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -164,8 +161,8 @@ Add to `~/.codeium/windsurf/mcp_config.json` (Windows: `%USERPROFILE%\.codeium\w
|
|
|
164
161
|
{
|
|
165
162
|
"mcpServers": {
|
|
166
163
|
"dokploy-fullapi-proxy": {
|
|
167
|
-
"command": "
|
|
168
|
-
"args": ["
|
|
164
|
+
"command": "npx",
|
|
165
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
169
166
|
"env": {
|
|
170
167
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
171
168
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -202,8 +199,8 @@ Add to `.vscode/mcp.json` in your workspace:
|
|
|
202
199
|
{
|
|
203
200
|
"servers": {
|
|
204
201
|
"dokploy-fullapi-proxy": {
|
|
205
|
-
"command": "
|
|
206
|
-
"args": ["
|
|
202
|
+
"command": "npx",
|
|
203
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
207
204
|
"env": {
|
|
208
205
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
209
206
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -231,8 +228,8 @@ Open Cline → **MCP Servers** icon → **Edit MCP Settings**, then add:
|
|
|
231
228
|
{
|
|
232
229
|
"mcpServers": {
|
|
233
230
|
"dokploy-fullapi-proxy": {
|
|
234
|
-
"command": "
|
|
235
|
-
"args": ["
|
|
231
|
+
"command": "npx",
|
|
232
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
236
233
|
"env": {
|
|
237
234
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
238
235
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -260,8 +257,8 @@ Create `.continue/mcpServers/dokploy.json`:
|
|
|
260
257
|
{
|
|
261
258
|
"mcpServers": {
|
|
262
259
|
"dokploy-fullapi-proxy": {
|
|
263
|
-
"command": "
|
|
264
|
-
"args": ["
|
|
260
|
+
"command": "npx",
|
|
261
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
265
262
|
"env": {
|
|
266
263
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
267
264
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -287,15 +284,15 @@ Add a `.continue/rules/dokploy.md` rule with the contents of `skill/SKILL.md`. C
|
|
|
287
284
|
codex mcp add dokploy-fullapi-proxy \
|
|
288
285
|
--env DOKPLOY_URL=https://your-dokploy-instance.com/api \
|
|
289
286
|
--env DOKPLOY_TOKEN=your-api-token \
|
|
290
|
-
--
|
|
287
|
+
-- npx -y mcp-dokploy-fullapi-proxy
|
|
291
288
|
```
|
|
292
289
|
|
|
293
290
|
Or add to `~/.codex/config.toml` (global) or `.codex/config.toml` (project):
|
|
294
291
|
|
|
295
292
|
```toml
|
|
296
293
|
[mcp_servers.dokploy-fullapi-proxy]
|
|
297
|
-
command = "
|
|
298
|
-
args = ["
|
|
294
|
+
command = "npx"
|
|
295
|
+
args = ["-y", "mcp-dokploy-fullapi-proxy"]
|
|
299
296
|
|
|
300
297
|
[mcp_servers.dokploy-fullapi-proxy.env]
|
|
301
298
|
DOKPLOY_URL = "https://your-dokploy-instance.com/api"
|
|
@@ -329,8 +326,8 @@ Add to Zed `settings.json` (via **Agent Panel → Settings**):
|
|
|
329
326
|
"context_servers": {
|
|
330
327
|
"dokploy-fullapi-proxy": {
|
|
331
328
|
"command": {
|
|
332
|
-
"path": "
|
|
333
|
-
"args": ["
|
|
329
|
+
"path": "npx",
|
|
330
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
334
331
|
"env": {
|
|
335
332
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
336
333
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -359,8 +356,8 @@ Add to `~/.gemini/settings.json` or via **Antigravity Settings → MCP**:
|
|
|
359
356
|
{
|
|
360
357
|
"mcpServers": {
|
|
361
358
|
"dokploy-fullapi-proxy": {
|
|
362
|
-
"command": "
|
|
363
|
-
"args": ["
|
|
359
|
+
"command": "npx",
|
|
360
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
364
361
|
"env": {
|
|
365
362
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
366
363
|
"DOKPLOY_TOKEN": "your-api-token"
|
|
@@ -388,8 +385,8 @@ Configure via Roo Code's MCP settings panel, same JSON format as Cline:
|
|
|
388
385
|
{
|
|
389
386
|
"mcpServers": {
|
|
390
387
|
"dokploy-fullapi-proxy": {
|
|
391
|
-
"command": "
|
|
392
|
-
"args": ["
|
|
388
|
+
"command": "npx",
|
|
389
|
+
"args": ["-y", "mcp-dokploy-fullapi-proxy"],
|
|
393
390
|
"env": {
|
|
394
391
|
"DOKPLOY_URL": "https://your-dokploy-instance.com/api",
|
|
395
392
|
"DOKPLOY_TOKEN": "your-api-token"
|
package/package.json
CHANGED