> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nuon.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Sample queries

> Prompts to paste into an LLM client after Nuon MCP is connected.

Copy a prompt into Claude Code, Cursor, or Amp after [MCP is connected](/guides/agents/overview). The client should pick tools from the [catalog](/guides/agents/tools); you do not need to name them.

Write prompts need `--allow-writes` on the stdio proxy.

Replace names like `acme-prod` with your own install, app, or workflow IDs.

<AccordionGroup>
  <Accordion title="What's in this org?">
    ```
    What apps and installs are in this org? Summarize each install's app and status.
    ```

    Variants: `Show me installs for the payments app.`
  </Accordion>

  <Accordion title="Status of an install">
    ```
    What's the status of install acme-prod? Include components, recent workflows, and anything unhealthy.
    ```
  </Accordion>

  <Accordion title="Pending approvals">
    ```
    Are there any pending workflow approvals in this org? For each one, tell me the install, workflow, and what is waiting.
    ```
  </Accordion>

  <Accordion title="Approve or reject a plan">
    ```
    Review the pending plan on workflow <workflow_id>. Summarize the change, then ask me before approving or rejecting it.
    ```

    Write. The agent should inspect the workflow first and wait for your confirmation.
  </Accordion>

  <Accordion title="Why did this deploy fail?">
    ```
    Why did the latest deploy on install acme-prod fail? Pull the deploy and workflow step logs and quote the error.
    ```
  </Accordion>

  <Accordion title="Why did this build fail?">
    ```
    Why did the latest build for component <component> fail? Show the git ref and the relevant log lines.
    ```
  </Accordion>

  <Accordion title="Watch a workflow">
    ```
    Watch workflow <workflow_id> until it finishes. Tell me when the status changes and when it reaches a terminal state.
    ```
  </Accordion>

  <Accordion title="Actions on an install">
    ```
    What actions can I run on install acme-prod? For each one, say whether it can be triggered manually.
    ```
  </Accordion>

  <Accordion title="Run an action">
    ```
    Run the <action name> action on install acme-prod. Confirm the action with me before triggering it, then watch the workflow.
    ```

    Write.
  </Accordion>

  <Accordion title="Runbooks">
    ```
    Show the runbooks for app <app>. Summarize the steps in each one.
    ```
  </Accordion>

  <Accordion title="App branch overview">
    ```
    What's the latest on the default branch for app <app>? Did the last run succeed, what changed, and how far have install-group deploys gotten?
    ```

    Requires the app-branches org feature.
  </Accordion>

  <Accordion title="Preview a PR or git ref">
    ```
    Preview PR <number> for app <app> against install acme-prod. Use plan-only unless I ask you to apply. Watch the workflow and summarize the result.
    ```

    Write. Same as `nuon apps branches preview`. Ask before `apply`.

    HTTP MCP cannot read the local workspace. For local toml, run `nuon apps sync` first, then pass the resulting `app_config_id`.
  </Accordion>

  <Accordion title="Deprovision or reprovision">
    ```
    Plan a reprovision of install acme-prod. Do not apply until I confirm. If I ask to deprovision, require an explicit confirm from me first.
    ```

    Write. Deprovision requires `confirm=true`. `plan_only` does not.
  </Accordion>

  <Accordion title="Inspect or update install inputs">
    ```
    What are the current inputs on install acme-prod? Propose an update for <input_name> and wait for my approval before writing it.
    ```

    Write.
  </Accordion>

  <Accordion title="Retry a failed step">
    ```
    Workflow <workflow_id> failed. Tell me which step failed and whether it is retryable. If I say yes, retry it and watch until it finishes.
    ```

    Write.
  </Accordion>

  <Accordion title="Cancel a workflow">
    ```
    Cancel in-progress workflow <workflow_id> on install acme-prod. Confirm with me first, then verify it stopped.
    ```

    Write.
  </Accordion>
</AccordionGroup>
