@mcpcloud/cli 0.17.2 → 0.18.0
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 +15 -1
- package/dist/index.js +945 -202
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -336,6 +336,10 @@ _Generated from the live command tree by `bun run docs:readme` — do not edit b
|
|
|
336
336
|
| `mcp servers delete <server>` | Permanently delete a server and all its data. Requires --confirm "<exact name>". |
|
|
337
337
|
| `mcp servers deploy <server>` | Deploy a server's generated bundle to Cloudflare Workers (closes the spec → deploy loop) |
|
|
338
338
|
| `mcp servers deployments <server>` | List a server's deployment history |
|
|
339
|
+
| `mcp servers deps` | Compose another server's tools into this one (list / add / rm) |
|
|
340
|
+
| `mcp servers deps add <server> <child>` | Compose <child>'s tools into <server>. Both accept an id, name or slug. |
|
|
341
|
+
| `mcp servers deps list [server]` | List the servers this one composes. |
|
|
342
|
+
| `mcp servers deps rm <server> <dependencyId>` | Remove a composed dependency (id from `deps list`). |
|
|
339
343
|
| `mcp servers env` | Manage server runtime environment bindings (encrypted secrets injected by the proxy). |
|
|
340
344
|
| `mcp servers env get <server> <bindingName>` | Show metadata for one env binding. Plaintext is never returned — values are write-only. |
|
|
341
345
|
| `mcp servers env list <server>` | List a server's env bindings (metadata only; values are never returned). |
|
|
@@ -349,9 +353,19 @@ _Generated from the live command tree by `bun run docs:readme` — do not edit b
|
|
|
349
353
|
| `mcp servers logs <server>` | Show recent deployment events for a server's latest deployment |
|
|
350
354
|
| `mcp servers oauth-connections <server>` | List OAuth provider connections bound to this server |
|
|
351
355
|
| `mcp servers pause <server>` | Pause the server's latest active deployment (traffic stops; worker is preserved) |
|
|
356
|
+
| `mcp servers prompts` | Author the prompts a client reads as this server’s workflows (list / set / rm) |
|
|
357
|
+
| `mcp servers prompts list <server>` | List the prompts authored on a server. |
|
|
358
|
+
| `mcp servers prompts rm <server> <name>` | Remove a prompt by name. |
|
|
359
|
+
| `mcp servers prompts set <server> <name>` | Create or replace a prompt by name. Re-running with the same name updates it. |
|
|
352
360
|
| `mcp servers push-spec <server>` | Regenerate a server’s bundle from a local OpenAPI spec. Previews the tool changes; --apply writes them. |
|
|
353
361
|
| `mcp servers regenerate <server>` | Re-fetch a server's source spec and rebuild its tools with the current codegen (preserves customizations). Wraps POST /api/v1/server/regenerate. |
|
|
362
|
+
| `mcp servers resources` | Author the resources this server exposes to clients (list / set / rm) |
|
|
363
|
+
| `mcp servers resources list <server>` | List the resources authored on a server. |
|
|
364
|
+
| `mcp servers resources rm <server> <uri>` | Remove a resource by URI. |
|
|
365
|
+
| `mcp servers resources set <server> <uri>` | Create or replace a resource by URI. Re-running with the same URI updates it. |
|
|
354
366
|
| `mcp servers resume <server>` | Resume the server's paused deployment (flips dispatch routing back on; only platformWorker deployments support instant resume) |
|
|
367
|
+
| `mcp servers score <server>` | Score whether an agent handed this catalog picks the right tool (starts a run, or reads the last one) |
|
|
368
|
+
| `mcp servers shape <server>` | Propose task-shaped tools over this server’s endpoints (starts a run, or reads the last one) |
|
|
355
369
|
| `mcp servers test-runs` | Inspect and trigger server sandbox test runs |
|
|
356
370
|
| `mcp servers test-runs get <testRunId>` | Show one server test run with assertions, trace, and the tool response |
|
|
357
371
|
| `mcp servers test-runs list <server>` | List sandbox test runs for a server |
|
|
@@ -414,7 +428,7 @@ _Generated from the live command tree by `bun run docs:readme` — do not edit b
|
|
|
414
428
|
| --- | --- |
|
|
415
429
|
| `mcp tools diff <name>` | Compare a tool's local files (metadata .md + handler .ts) against the cloud version. |
|
|
416
430
|
| `mcp tools edit <name>` | Open a tool's local .md in $EDITOR; pushes your changes to the cloud on save. Requires `mcp dev` to have materialized tools (run `mcp tools pull` first if needed). |
|
|
417
|
-
| `mcp tools enrich
|
|
431
|
+
| `mcp tools enrich [name]` | Run AI enrichment for one tool (prints the suggested vs applied diff), or for the whole server with --all. |
|
|
418
432
|
| `mcp tools handlers` | Inspect tool handler files (the per-tool .ts in src/tools/) |
|
|
419
433
|
| `mcp tools handlers list` | List every tool with its handler override status (default / override / stale). |
|
|
420
434
|
| `mcp tools list` | List tools for a project, or scope to a single server with --server |
|