# Waboxapp — how to use (mcp.ai)

Connect your Waboxapp account and use 2 tools for phone and SMS straight from your AI agent. Connect with your own API key. Waboxapp integrates WhatsApp messaging into CRM systems, allowing businesses to centralize customer communications for sales and support.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_waboxapp?ms=1787296020000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `waboxapp_webhook_ack_event`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/waboxapp`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/waboxapp/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/waboxapp/webhook/ack/event` — Tool to process incoming message acknowledgment events. Use when waboxapp posts real-time deliver/read statuses to your webhook endpoint. Validates token before processing.
  - body: { ack: integer, uid: string, cuid?: string, muid?: string, event: string, token: string }
- `POST https://api.mcp.ai/api/waboxapp/webhook/message/event` — Tool to receive real-time incoming WhatsApp message events via webhook. Use after configuring your webhook URL to handle WABOXAPP POST form payloads.
  - body: { uid: string, event: string, token: string, contact: object, message: object }

## Example prompts
- "What can I do in Waboxapp?"
- "Show me a summary of my Waboxapp account"

## More
- Page: https://mcp.ai/waboxapp
- Agent spec (llms.txt): https://mcp.ai/waboxapp/llms.txt
- Postman collection: https://mcp.ai/waboxapp/postman.json
