mcp-dokploy-fullapi-proxy 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # mcp-dokploy-fullapi-proxy
2
2
 
3
- > **Dokploy Version: `v0.28.1` — 436 Endpoints** _(last updated: 2026-02-28)_
3
+ > **Dokploy Version: `v0.28.2` — 445 Endpoints** _(last updated: 2026-03-02)_
4
4
 
5
5
  Full API proxy MCP for the entire Dokploy API. **1 tool, ~200 tokens** instead of 67+ tools consuming ~35,000 tokens per conversation.
6
6
 
@@ -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
- git clone https://github.com/hl9020/mcp-dokploy-fullapi-proxy.git
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": "node",
45
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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
- -- node /path/to/mcp-dokploy-fullapi-proxy/dist/index.js
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": "node",
86
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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": "node",
122
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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": "node",
168
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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": "node",
206
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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": "node",
235
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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": "node",
264
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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
- -- node /path/to/mcp-dokploy-fullapi-proxy/dist/index.js
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 = "node"
298
- args = ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"]
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": "node",
333
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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": "node",
363
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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": "node",
392
- "args": ["/path/to/mcp-dokploy-fullapi-proxy/dist/index.js"],
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"
@@ -432,11 +429,11 @@ The `skill/` directory contains API documentation split by resource (auto-genera
432
429
  | File | Endpoints | Coverage |
433
430
  |------|-----------|----------|
434
431
  | `SKILL.md` | – | Entry point, routing table |
435
- | `project.md` | 12 | Projects & Environments |
436
- | `app.md` | 28 | Applications |
437
- | `compose.md` | 27 | Compose services |
432
+ | `project.md` | 14 | Projects & Environments |
433
+ | `app.md` | 29 | Applications |
434
+ | `compose.md` | 28 | Compose services |
438
435
  | `domain.md` | 9 | Domains & SSL |
439
- | `database.md` | 65 | PostgreSQL, MySQL, MariaDB, MongoDB, Redis |
436
+ | `database.md` | 70 | PostgreSQL, MySQL, MariaDB, MongoDB, Redis |
440
437
  | `deployment.md` | 12 | Deployments, Preview, Rollback |
441
438
  | `docker.md` | 7 | Docker containers |
442
439
  | `server.md` | 23 | Server, Cluster, Swarm |
@@ -452,7 +449,7 @@ The `skill/` directory contains API documentation split by resource (auto-genera
452
449
  |---|---|---|
453
450
  | Tools registered | 67 | 1 |
454
451
  | Permanent context tokens | ~35,000 | ~200 |
455
- | API coverage | ~16% (67 of 436 endpoints) | 100% (436 endpoints) |
452
+ | API coverage | ~16% (67 of 436 endpoints) | 100% (445 endpoints) |
456
453
  | On-demand tokens per request | 0 | ~500–2,000 (1 skill file) |
457
454
  | Typical savings | – | **77–92% fewer tokens** |
458
455
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mcp-dokploy-fullapi-proxy",
3
- "version": "1.0.1",
4
- "description": "Full API proxy MCP for the entire Dokploy API single tool, skill-driven, 407 endpoints",
3
+ "version": "1.0.3",
4
+ "description": "Full API proxy MCP for the entire Dokploy API - single tool, skill-driven, 445 endpoints",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "scripts": {
package/skill/SKILL.md CHANGED
@@ -4,7 +4,7 @@ description: >
4
4
  Use this skill when the user asks to manage Dokploy infrastructure: deploy apps,
5
5
  manage compose services, configure domains, databases, servers, notifications,
6
6
  users, git providers, or any Dokploy administration task. Provides complete API
7
- reference for all 436 Dokploy tRPC endpoints accessible via the dokploy MCP tool.
7
+ reference for all 445 Dokploy tRPC endpoints accessible via the dokploy MCP tool.
8
8
  ---
9
9
 
10
10
  # Dokploy MCP Light - API Skill
@@ -19,11 +19,11 @@ Read the matching reference file for the task:
19
19
 
20
20
  | Task | File | Endpoints |
21
21
  |------|------|-----------|
22
- | Projects & Environments | `project.md` | 12 |
23
- | Applications (Deploy, Config, Git, Traefik) | `app.md` | 28 |
24
- | Compose Services | `compose.md` | 27 |
22
+ | Projects & Environments | `project.md` | 14 |
23
+ | Applications (Deploy, Config, Git, Traefik) | `app.md` | 29 |
24
+ | Compose Services | `compose.md` | 28 |
25
25
  | Domains & SSL | `domain.md` | 9 |
26
- | Databases (PG, MySQL, MariaDB, Mongo, Redis) | `database.md` | 65 |
26
+ | Databases (PG, MySQL, MariaDB, Mongo, Redis) | `database.md` | 70 |
27
27
  | Deployments, Preview, Rollback | `deployment.md` | 12 |
28
28
  | Docker Container | `docker.md` | 7 |
29
29
  | Server, Cluster, Swarm | `server.md` | 23 |
package/skill/app.md CHANGED
@@ -142,3 +142,8 @@ dokploy("application.move", { applicationId: "...", targetEnvironmentId: "..." }
142
142
  ```
143
143
  dokploy("application.cancelDeployment", { applicationId: "..." })
144
144
  ```
145
+
146
+ ### application.search
147
+ ```
148
+ dokploy("application.search", { q?: "...", name?: "...", appName?: "...", description?: "...", repository?: "...", owner?: "...", dockerImage?: "...", projectId?: "...", environmentId?: "...", limit?: "...", offset?: "..." })
149
+ ```
package/skill/compose.md CHANGED
@@ -137,3 +137,8 @@ dokploy("compose.import", { base64: "...", composeId: "..." })
137
137
  ```
138
138
  dokploy("compose.cancelDeployment", { composeId: "..." })
139
139
  ```
140
+
141
+ ### compose.search
142
+ ```
143
+ dokploy("compose.search", { q?: "...", name?: "...", appName?: "...", description?: "...", projectId?: "...", environmentId?: "...", limit?: "...", offset?: "..." })
144
+ ```
package/skill/database.md CHANGED
@@ -70,6 +70,11 @@ dokploy("postgres.move", { postgresId: "...", targetEnvironmentId: "..." })
70
70
  dokploy("postgres.rebuild", { postgresId: "..." })
71
71
  ```
72
72
 
73
+ ### postgres.search
74
+ ```
75
+ dokploy("postgres.search", { q?: "...", name?: "...", appName?: "...", description?: "...", projectId?: "...", environmentId?: "...", limit?: "...", offset?: "..." })
76
+ ```
77
+
73
78
  ## Mysql
74
79
 
75
80
  ### mysql.create
@@ -137,6 +142,11 @@ dokploy("mysql.move", { mysqlId: "...", targetEnvironmentId: "..." })
137
142
  dokploy("mysql.rebuild", { mysqlId: "..." })
138
143
  ```
139
144
 
145
+ ### mysql.search
146
+ ```
147
+ dokploy("mysql.search", { q?: "...", name?: "...", appName?: "...", description?: "...", projectId?: "...", environmentId?: "...", limit?: "...", offset?: "..." })
148
+ ```
149
+
140
150
  ## Mariadb
141
151
 
142
152
  ### mariadb.create
@@ -204,6 +214,11 @@ dokploy("mariadb.move", { mariadbId: "...", targetEnvironmentId: "..." })
204
214
  dokploy("mariadb.rebuild", { mariadbId: "..." })
205
215
  ```
206
216
 
217
+ ### mariadb.search
218
+ ```
219
+ dokploy("mariadb.search", { q?: "...", name?: "...", appName?: "...", description?: "...", projectId?: "...", environmentId?: "...", limit?: "...", offset?: "..." })
220
+ ```
221
+
207
222
  ## Mongo
208
223
 
209
224
  ### mongo.create
@@ -271,6 +286,11 @@ dokploy("mongo.move", { mongoId: "...", targetEnvironmentId: "..." })
271
286
  dokploy("mongo.rebuild", { mongoId: "..." })
272
287
  ```
273
288
 
289
+ ### mongo.search
290
+ ```
291
+ dokploy("mongo.search", { q?: "...", name?: "...", appName?: "...", description?: "...", projectId?: "...", environmentId?: "...", limit?: "...", offset?: "..." })
292
+ ```
293
+
274
294
  ## Redis
275
295
 
276
296
  ### redis.create
@@ -337,3 +357,8 @@ dokploy("redis.move", { redisId: "...", targetEnvironmentId: "..." })
337
357
  ```
338
358
  dokploy("redis.rebuild", { redisId: "..." })
339
359
  ```
360
+
361
+ ### redis.search
362
+ ```
363
+ dokploy("redis.search", { q?: "...", name?: "...", appName?: "...", description?: "...", projectId?: "...", environmentId?: "...", limit?: "...", offset?: "..." })
364
+ ```
Binary file
package/skill/project.md CHANGED
@@ -17,6 +17,11 @@ dokploy("project.one", { projectId: "..." })
17
17
  dokploy("project.all")
18
18
  ```
19
19
 
20
+ ### project.search
21
+ ```
22
+ dokploy("project.search", { q?: "...", name?: "...", description?: "...", limit?: "...", offset?: "..." })
23
+ ```
24
+
20
25
  ### project.remove
21
26
  ```
22
27
  dokploy("project.remove", { projectId: "..." })
@@ -63,3 +68,8 @@ dokploy("environment.update", { environmentId: "...", name?: "...", description?
63
68
  ```
64
69
  dokploy("environment.duplicate", { environmentId: "...", name: "...", description?: "..." })
65
70
  ```
71
+
72
+ ### environment.search
73
+ ```
74
+ dokploy("environment.search", { q?: "...", name?: "...", description?: "...", projectId?: "...", limit?: "...", offset?: "..." })
75
+ ```