# request_quote

Submit a quote/enquiry to Aivonic on behalf of a real prospect. Include what they want (product, use case, scale) in message. Aivonic's team is emailed and will follow up by email. Use for anything beyond the standard published pricing, or when the prospect wants a human to reach out.

Agent View of the PolicyLayer registry record for `request_quote`. HTML page: https://policylayer.com/tools/ai-aivonic-mcp/request-quote

## Facts

- Tool: `request_quote`
- 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: 4 (3 required)
- Recommended policy verdict: Rate-limited

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | string | yes |  |
| `email` | string | yes |  |
| `company` | string | no |  |
| `message` | string | yes |  |

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": "request_quote",
    "arguments": {
      "name": "<name>",
      "email": "<email>",
      "message": "<message>"
    }
  }
}
```

## Why request_quote is rated High

request_quote 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 request_quote 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": {
    "request_quote": {
      "limits": [
        {
          "counter": "request_quote_rate",
          "window": "minute",
          "max": 10,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Mcp (4)

- `book_demo` — Execute — https://policylayer.com/tools/ai-aivonic-mcp/book-demo.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
