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

# Demo pages

> Create internal review pages for your agents via the MCP API.

## create\_demo\_page

Create an internal review page for one of your agents. Share it with your team to test the chatbot before deploying it on your website. The review page uses the same chat infrastructure and counts against your real usage limits.

The review page includes helpful tips like reminders to republish after changes and clearing the cache if updates aren't visible.

**Parameters:**

<ParamField body="agentId" type="string" required>
  The ID of the agent to create a review page for.
</ParamField>

<ParamField body="title" type="string">
  Optional title for the review page (e.g. "Support Bot v2 Review"). Defaults to the agent's name.
</ParamField>

<ParamField body="language" type="string">
  Review page language: `en` or `de`. Defaults to `en`.
</ParamField>

**Example request:**

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "create_demo_page",
    "arguments": {
      "agentId": "abc-123",
      "title": "Support Bot v2 — Team Review"
    }
  },
  "id": 1
}
```

**Example response:**

```json theme={null}
{
  "demoId": "demo-789",
  "reviewUrl": "https://demo.inboxmate.psquared.dev/demo-789"
}
```

<Info>
  Review pages behave like live chat sessions — conversations count against your plan's usage limits and appear in your inbox. Share the URL with your team for internal testing before deploying the widget on your website.
</Info>
