# Leverly — how to use (mcp.ai)

Connect your Leverly account and use 3 tools for sales and CRM straight from your AI agent. Connect with your own API key. Leverly is a platform that integrates with various applications to automate workflows and processes.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_leverly?ms=1787293440000`
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. `leverly_create_call`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/leverly`
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/leverly/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/leverly/create/call` — Tool to create a new call/lead in Leverly system. Sends lead information to trigger an instant phone call to your sales team. Use when integrating external systems (CRM, forms, lead providers) with Le
  - body: { zip?: string, area?: string, city?: string, email?: string, state?: string, Phone1: string, Phone2?: string, Phone3?: string, Phone4?: string, keyword?: string, program?: string, address1?: string, callerId?: string, comments?: string, lastName?: string, location?: string, repPhone?: string, AccountID: string, callDelay?: integer, firstName: string, leadSource?: string, companyName?: string, routingType?: string, vendorLeadId?: string }
- `POST https://api.mcp.ai/api/leverly/list/reattempts` — Tool to list all reattempts in Leverly. Use when you need to inspect the history of ingestion reattempts before taking further action.
- `POST https://api.mcp.ai/api/leverly/stop/reattempts` — Tool to stop ongoing reattempts for a lead in Leverly. Use when you need to halt retries for a given reattempt ID.
  - body: { reattempt_id: string }

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

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