# Curated — how to use (mcp.ai)

Connect your Curated account and use 6 tools for email newsletters straight from your AI agent. Connect with your own API key. Curated is a platform that enables users to collect, curate, and publish newsletters, integrating with various services through its API.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/curated/create/draft/issue` — Tool to create a draft issue for a publication. Use after confirming the publication ID. Applies default settings if optional fields are omitted.
  - body: { title: string, editor_note?: string, issue_number?: integer, publication_id: string }
- `POST https://api.mcp.ai/api/curated/create/link` — Tool to create a collected link for a publication. Use when you want to add a new link (with URL, title, etc.) to a publication's collection.
  - body: { url: string, image?: string, title?: string, category?: string, description?: string, publication_id: integer }
- `POST https://api.mcp.ai/api/curated/list/categories` — Tool to list all categories for a publication. Use after you have the publication ID and need to fetch its categories.
  - body: { publication_id: string }
- `POST https://api.mcp.ai/api/curated/list/email/subscribers` — Tool to list all email subscribers for a publication. Use after confirming the publication ID.
  - body: { page?: integer, per_page?: integer, publication_id: string }
- `POST https://api.mcp.ai/api/curated/list/issues` — Lists all issues (newsletters) for a Curated publication with pagination support. Use this tool to retrieve issues from a publication. You must first obtain the publication_id by calling the List Publ
  - body: { page?: integer, state?: string, stats?: boolean, per_page?: integer, publication_id: string }
- `POST https://api.mcp.ai/api/curated/list/publications` — Tool to list all publications accessible by the API key. Use when you need to retrieve your publication IDs for further API calls. Example prompt: "List my publications".

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

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