@mcpcloud/cli 0.15.0 → 0.17.0-next-20260807015618

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.
Files changed (3) hide show
  1. package/README.md +17 -2
  2. package/dist/index.js +7798 -6217
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -165,9 +165,11 @@ _Generated from the live command tree by `bun run docs:readme` — do not edit b
165
165
  | `mcp doctor` | Diagnose the CLI environment: Node, config, base URL, API key, claude CLI, and updates |
166
166
  | `mcp help [topic]` | Show extended help for a topic (auth, profiles, agents, errors) |
167
167
  | `mcp init` | Guided onboarding: pick org → pick/create project → create a server (empty skeleton, or generated from an OpenAPI/GraphQL spec via --from-spec) |
168
- | `mcp invoke <server> <tool>` | Call a tool on a deployed MCP server. Exchanges runtime-auth if needed, sends JSON-RPC `tools/call`, and prints the response. |
168
+ | `mcp invoke <server> [tool]` | Call a tool on a deployed MCP server or, with --local, boot this directory’s bundle once and call it there. |
169
169
  | `mcp login` | Sign in via browser (default) or paste an API key |
170
170
  | `mcp logout` | Remove the saved API key from ~/.mcpcloud/config.json |
171
+ | `mcp pull` | Materialize a server’s working tree here: every tool as .md, every handler as .ts, plus the sync baseline `push` diffs against |
172
+ | `mcp push` | Push local tool metadata and handler edits back to the cloud (diffed against your last pull) |
171
173
  | `mcp ui` | Interactive terminal UI: browse orgs/servers/skills, tail deployment logs, and watch the live `mcp dev` inspector |
172
174
  | `mcp update` | Check for a newer @mcpcloud/cli release and re-install it via your package manager |
173
175
  | `mcp whoami` | Show the caller identity, API key, base URL, and organizations you can access |
@@ -347,7 +349,7 @@ _Generated from the live command tree by `bun run docs:readme` — do not edit b
347
349
  | `mcp servers logs <server>` | Show recent deployment events for a server's latest deployment |
348
350
  | `mcp servers oauth-connections <server>` | List OAuth provider connections bound to this server |
349
351
  | `mcp servers pause <server>` | Pause the server's latest active deployment (traffic stops; worker is preserved) |
350
- | `mcp servers push-spec <server>` | Push a local OpenAPI spec to the cloud (regenerates the bundle; optionally deploys) |
352
+ | `mcp servers push-spec <server>` | Regenerate a server’s bundle from a local OpenAPI spec. Previews the tool changes; --apply writes them. |
351
353
  | `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. |
352
354
  | `mcp servers resume <server>` | Resume the server's paused deployment (flips dispatch routing back on; only platformWorker deployments support instant resume) |
353
355
  | `mcp servers test-runs` | Inspect and trigger server sandbox test runs |
@@ -355,11 +357,16 @@ _Generated from the live command tree by `bun run docs:readme` — do not edit b
355
357
  | `mcp servers test-runs list <server>` | List sandbox test runs for a server |
356
358
  | `mcp servers test-runs new <server>` | Trigger a sandbox test run against a server's latest deployment (synchronous) |
357
359
  | `mcp servers test-scenarios` | Inspect server sandbox test scenarios |
360
+ | `mcp servers test-scenarios generate <server>` | Seed one baseline smoke-test scenario per tool from the tools’ schemas (safe to re-run) |
358
361
  | `mcp servers test-scenarios get <scenarioId>` | Show one server test scenario including its request and expected response |
359
362
  | `mcp servers test-scenarios list <server>` | List test scenarios bound to a server |
363
+ | `mcp servers test-scenarios new <server>` | Author a test scenario for one of the server’s tools |
364
+ | `mcp servers test-scenarios rm <server> <scenarioId>` | Archive a test scenario |
365
+ | `mcp servers test-scenarios update <server> <scenarioId>` | Update a test scenario (only the flags you pass change) |
360
366
  | `mcp servers test-suites` | Inspect server sandbox test suites (groups of scenarios) |
361
367
  | `mcp servers test-suites get <suiteId>` | Show one server test suite including its scenario membership |
362
368
  | `mcp servers test-suites list <server>` | List test suites bound to a server |
369
+ | `mcp servers test-suites run <server>` | Run the server’s test scenarios and report the suite result |
363
370
  | `mcp servers update <server>` | Update a server (name, description, runtime token TTL) |
364
371
  | `mcp servers version <server> <versionId>` | Show details for a single server version |
365
372
  | `mcp servers versions <server>` | List published versions of a server |
@@ -372,19 +379,27 @@ _Generated from the live command tree by `bun run docs:readme` — do not edit b
372
379
  | `mcp skills connect <skill>` | Print (or apply) the MCP configuration that connects this skill to your coding agent |
373
380
  | `mcp skills create` | Create an empty skill draft in a project |
374
381
  | `mcp skills delete <skill>` | Permanently delete a draft skill. Requires --confirm "<exact name>". Published skills with versions/installs are rejected (archive instead). |
382
+ | `mcp skills deploy <skill>` | Deploy a published skill version as an MCP endpoint (newest version by default) |
375
383
  | `mcp skills get <skill>` | Get details for a single skill (accepts id or name) |
376
384
  | `mcp skills install <skill>` | Install a skill into the caller's project |
377
385
  | `mcp skills installations <skill>` | List the installation footprint of a skill (which orgs / users installed it) |
378
386
  | `mcp skills invoke <skill>` | Run a deployed skill from the terminal. Resolves the skill’s MCP endpoint, auto-discovers its single tool, and calls it. |
379
387
  | `mcp skills list` | List skills in an organization |
388
+ | `mcp skills publish <skill>` | Cut an immutable version of a skill |
380
389
  | `mcp skills pull <registryArtifactId>` | Download an installed skill as SKILL.md + mcpcloud.json for your coding agent |
390
+ | `mcp skills set-content <skill>` | Write a skill’s authored content: instructions, dependencies, guardrails, schemas, composition graph |
381
391
  | `mcp skills test-runs` | Inspect and trigger skill sandbox test runs |
382
392
  | `mcp skills test-runs get <testRunId>` | Show one skill test run with assertions, trace, and output |
383
393
  | `mcp skills test-runs list <skill>` | List sandbox test runs for a skill |
384
394
  | `mcp skills test-runs new <skill>` | Trigger a sandbox test run against a skill (synchronous; returns terminal status) |
385
395
  | `mcp skills test-scenarios` | Inspect skill sandbox test scenarios |
396
+ | `mcp skills test-scenarios generate <skill>` | Seed suggested scenarios from the skill’s examples and its dependencies’ tools (safe to re-run) |
386
397
  | `mcp skills test-scenarios get <scenarioId>` | Show one skill test scenario including its prompt and assertion body |
387
398
  | `mcp skills test-scenarios list <skill>` | List test scenarios bound to a skill |
399
+ | `mcp skills test-scenarios new <skill>` | Author a sandbox test scenario for a skill |
400
+ | `mcp skills test-scenarios rm <skill> <scenarioId>` | Archive a skill test scenario |
401
+ | `mcp skills test-scenarios update <skill> <scenarioId>` | Update a skill test scenario (only the flags you pass change) |
402
+ | `mcp skills token <skill>` | Reveal the skill’s runtime bearer token (--rotate issues a new one and invalidates the old) |
388
403
  | `mcp skills uninstall <skill>` | Mark the caller's installation of this skill as removed |
389
404
  | `mcp skills update <skill>` | Update skill metadata (name, description, visibility) |
390
405
  | `mcp skills version <skill> <versionId>` | Show details for one published skill version (workflow summary, triggers, deps) |