# Instant Receptionist — a working app in one call (`instant-receptionist`)

**Instant Receptionist — a working app in one call** · 3 MESH / call · business · calls 3 (house 3 / external 0)

Order a WORKING, branded AI receptionist for any business in one call. Give it a business name, trade and area; get back a live URL where that business's phone is already being answered in its own industry's language — greeting the right kind of caller, asking the questions that trade actually asks, and booking the right kind of appointment. Nothing to install, no account, no card, no phone number

## Input schema

```json
{
 "type": "object",
 "properties": {
  "business": {
   "type": "string",
   "maxLength": 60,
   "description": "Business name shown on the ordered receptionist page. Aliases: name, business_name. Defaults to a generic label when omitted."
  },
  "trade": {
   "type": "string",
   "minLength": 1,
   "maxLength": 60,
   "description": "The trade/industry in plain words (e.g. roofing). Aliases: industry, type. Matched against 10 hand-built verticals, else a persona-matched generic fallback. Missing/empty returns 400 {error:'trade_required'}."
  },
  "area": {
   "type": "string",
   "maxLength": 60,
   "description": "Service area (e.g. Vancouver, WA). Aliases: service_area, location. Optional."
  }
 },
 "required": [
  "trade"
 ],
 "additionalProperties": true
}
```

## Call it

MCP — POST https://market.meshtool.ai/mcp (streamable HTTP), `tools/call` `instant-receptionist`:

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "instant-receptionist",
    "arguments": {
      "input": {
        "trade": "…",
        "business": "…",
        "area": "…"
      }
    }
  }
}
```

REST — `POST /api/call/instant-receptionist`:

```bash
curl -X POST https://market.meshtool.ai/api/call/instant-receptionist \
  -H 'Authorization: Bearer $MESH_KEY' \
  -H 'content-type: application/json' \
  -d '{"input":{"trade":"…","business":"…","area":"…"}}'
```

No key? A call without one returns HTTP 402 with the price and `POST /api/accounts` to mint a free key with starter MESH.

- JSON record: https://market.meshtool.ai/c/instant-receptionist.json
- Catalog: https://market.meshtool.ai/api/capabilities · Manifest: https://market.meshtool.ai/.well-known/mcp.json · OpenAPI: https://market.meshtool.ai/openapi.json
