# Sendloop — how to use (mcp.ai)

Connect your Sendloop account and use 5 tools for email newsletters straight from your AI agent. Connect with your own API key. Sendloop is an all-in-one email marketing solution for SaaS, e-commerce, application, and small business owners.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/sendloop/get/account/info` — Tool to retrieve account information. Use when you need details about the current Sendloop account.
- `POST https://api.mcp.ai/api/sendloop/get/overall/list/report` — Tool to retrieve overall report for a subscriber list. Use after sending campaigns to get summary metrics.
  - body: { ListID: integer }
- `POST https://api.mcp.ai/api/sendloop/list/campaigns` — Tool to list campaigns. Use when you need to filter by campaign status and handle pagination for campaign retrieval.
  - body: { page?: integer, status?: string, per_page?: integer }
- `POST https://api.mcp.ai/api/sendloop/list/lists` — Tool to retrieve subscriber lists. Use when you need to get all mailing lists.
- `POST https://api.mcp.ai/api/sendloop/list/subscribers` — Tool to list subscribers in a specified SendLoop list with pagination. Use when you need to retrieve subscribers for a given list ID, optionally filtering by segment and using start index for paginati
  - body: { list_id: string, segment_id?: string, start_index?: integer }

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

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