# book_demo

Book a free Aivonic discovery call at a specific slot for a real person. start_iso must be an ISO-8601 start time returned by check_availability. Provide the prospect's real name and email; a calendar invite is sent to them. Returns booking confirmation or an error.

Agent View of the PolicyLayer registry record for `book_demo`. HTML page: https://policylayer.com/tools/ai-aivonic-mcp/book-demo

## Facts

- Tool: `book_demo`
- Server: Mcp (`https://mcp.aivonic.ai`) — https://policylayer.com/tools/ai-aivonic-mcp.md
- Homepage: https://github.com/https://mcp.aivonic.ai
- Risk category: Execute (High risk)
- Registry record: grade D, identity unverified
- Server auth posture: open
- Server rate-limited: no
- Parameters: 5 (3 required)
- Recommended policy verdict: Rate-limited

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | string | yes |  |
| `email` | string | yes |  |
| `notes` | string | no |  |
| `start_iso` | string | yes |  |
| `timezone_name` | string | no |  |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "book_demo",
    "arguments": {
      "name": "<name>",
      "email": "<email>",
      "start_iso": "<start_iso>"
    }
  }
}
```

## Why book_demo is rated High

book_demo triggers real processes with real consequences. An agent gone sideways doesn't fire it once. It starts dozens of builds, sends mass notifications, or burns through compute before anyone looks up.

## Use case

AI agents invoke book_demo to trigger actions in Mcp. What it does depends on the arguments the agent supplies, and its effects often reach beyond the immediate call: builds kicked off, notifications sent, workflows started.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Mcp:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "book_demo": {
      "limits": [
        {
          "counter": "book_demo_rate",
          "window": "minute",
          "max": 10,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Mcp (4)

- `request_quote` — Execute — https://policylayer.com/tools/ai-aivonic-mcp/request-quote.md
- `check_availability` — Read — https://policylayer.com/tools/ai-aivonic-mcp/check-availability.md
- `get_pricing` — Read — https://policylayer.com/tools/ai-aivonic-mcp/get-pricing.md
- `get_products` — Read — https://policylayer.com/tools/ai-aivonic-mcp/get-products.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=ai-aivonic-mcp · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/ai-aivonic-mcp
