Get Partiri CLI Guidance
use_partiri_cliGet step-by-step instructions to run the Partiri Cloud CLI locally for managing workspace secrets, detaching or deleting volumes, killing services, and managing service environment variables.
Instructions
Guidance for running the locally-installed partiri CLI yourself for sensitive operations that are intentionally not exposed as direct MCP tools: managing workspace secrets (partiri secret create-repository / create-registry), detaching or deleting a volume (partiri storage detach / delete), killing a service (partiri service kill), and managing service environment variables (partiri service env). This tool does NOT execute anything — it returns instructions for you to run the command in your own shell. These operations are kept CLI-only because they pass long-lived credentials or cause irreversible data loss, and the CLI authenticates independently of the MCP session. Note: creating, attaching, or retry-provisioning a volume has no CLI subcommand — use the dashboard or API. Service-scoped commands like service kill read the service ID from a local .partiri.jsonc (only service deploy accepts --service <UUID>). Discover exact subcommands and flags at runtime — run partiri llm guide, partiri llm capabilities -j, or partiri <area> --help first; do not assume command syntax. For credential values prefer stdin (with the CLI flag that reads stdin, e.g. --token-stdin / --password-stdin) over an argument so the secret stays out of the command line and this context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | What you want to accomplish with the partiri CLI, e.g. "delete a service". | |
| command | No | The specific partiri CLI command to run, if known, e.g. "partiri service kill". |