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

# Prompt Cheatsheet

> Copy-paste prompts for common tasks with the Bolna MCP server.

Paste any of these into a connected client. Each one links to the tool it triggers — see the [Tool List](/docs/build-with-ai/mcp-tool-list) for the full schema.

## Agents

<AccordionGroup>
  <Accordion title="List your agents" icon="list">
    ```
    List my Bolna agents.
    ```

    Triggers `list_agents`.
  </Accordion>

  <Accordion title="Get an agent's config" icon="robot">
    ```
    Show me the full config for agent <agent_id>.
    ```

    Triggers `get_agent`.
  </Accordion>

  <Accordion title="Create an agent" icon="circle-plus">
    ```
    Create a Hindi appointment-booking agent using Plivo and Sarvam TTS,
    with a welcome message that greets the caller by name.
    ```

    Triggers `create_agent`.
  </Accordion>

  <Accordion title="Update an agent" icon="pen-to-square">
    ```
    Update agent <agent_id>'s welcome message to mention our new return policy.
    ```

    Triggers `update_agent` — most clients ask you to confirm first.
  </Accordion>

  <Accordion title="Delete an agent" icon="trash">
    ```
    Delete the test agent I created yesterday.
    ```

    Triggers `delete_agent` — irreversible, most clients ask you to confirm first.
  </Accordion>
</AccordionGroup>

## Calls & executions

<AccordionGroup>
  <Accordion title="Place a call" icon="phone-arrow-up-right">
    ```
    Call +91XXXXXXXXXX using my sales agent and pass customer_name: Priya as context.
    ```

    Triggers `start_outbound_call` — spends account balance, most clients ask you to confirm first.
  </Accordion>

  <Accordion title="Review recent calls" icon="clock-rotate-left">
    ```
    Show me agent <agent_id>'s last 20 calls from this week.
    ```

    Triggers `list_agent_executions`.
  </Accordion>

  <Accordion title="Pull a transcript" icon="file-waveform">
    ```
    Pull the transcript and cost for execution <execution_id>.
    ```

    Triggers `get_execution`.
  </Accordion>
</AccordionGroup>

## Phone numbers & batches

<AccordionGroup>
  <Accordion title="List phone numbers" icon="phone">
    ```
    What phone numbers do I have, and which agent is each one linked to?
    ```

    Triggers `list_phone_numbers`.
  </Accordion>

  <Accordion title="List batch campaigns" icon="layer-group">
    ```
    List the batch campaigns for my collections agent.
    ```

    Triggers `list_batches`.
  </Accordion>
</AccordionGroup>

## Account

<AccordionGroup>
  <Accordion title="Check balance and limits" icon="wallet">
    ```
    What's my current wallet balance and concurrency limit?
    ```

    Triggers `get_user_info`.
  </Accordion>
</AccordionGroup>

## Chained, multi-step

These touch more than one tool in a single request — the assistant chains the lookups itself.

<AccordionGroup>
  <Accordion title="Chain a diagnostic across calls" icon="magnifying-glass-chart">
    ```
    Check agent <agent_id>'s last 10 calls — for any that didn't
    complete, tell me why.
    ```

    Chains `list_agent_executions` → `get_execution`.
  </Accordion>

  <Accordion title="Check balance before calling" icon="wallet">
    ```
    If my wallet balance is above ₹500, call +91XXXXXXXXXX with my
    onboarding agent.
    ```

    Chains `get_user_info` → `start_outbound_call`.
  </Accordion>

  <Accordion title="Audit missing webhooks" icon="magnifying-glass">
    ```
    Which of my agents don't have a webhook set up?
    ```

    Chains `list_agents` → `get_agent` per agent.
  </Accordion>

  <Accordion title="Clean up test agents" icon="broom">
    ```
    Delete any agents I made today with "test" in the name.
    ```

    Chains `list_agents` → `delete_agent`; expect a confirmation prompt per delete.
  </Accordion>
</AccordionGroup>

<CardGroup cols={2}>
  <Card title="MCP Overview" icon="server" href="/docs/build-with-ai/mcp">
    How the server works and what you can do with it
  </Card>

  <Card title="Example: Monitoring Dashboard" icon="gauge" href="/docs/build-with-ai/mcp-example-app">
    Use these prompts to explore your data, then have your assistant build a small dashboard around it
  </Card>
</CardGroup>
