# Remarkety — how to use (mcp.ai)

Connect your Remarkety account and use 5 tools for marketing automation straight from your AI agent. Connect with your own API key. Remarkety is an AI-powered marketing automation platform designed for eCommerce, enabling personalized email, SMS, and social campaigns based on customer behavior.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/remarkety/get/campaigns` — Tool to retrieve a list of marketing campaigns. Use when you need to page through campaigns with optional limit and skip.
  - body: { skip?: integer, limit?: integer }
- `POST https://api.mcp.ai/api/remarkety/get/customers` — Tool to retrieve customers. Use when you need to fetch a paginated list of customers from a Remarkety store.
  - body: { limit?: integer, offset?: integer, updatedAtMax?: string, updatedAtMin?: string }
- `POST https://api.mcp.ai/api/remarkety/get/products` — Tool to retrieve products. Use when you need to fetch a paginated list of products from a Remarkety store.
  - body: { limit?: integer, offset?: integer, productId?: string, createdAtMax?: string, createdAtMin?: string, updatedAtMax?: string, updatedAtMin?: string }
- `POST https://api.mcp.ai/api/remarkety/track/cart` — Tool to track cart events in Remarkety. Use after a customer updates their cart to sync cart data for remarketing.
  - body: { url?: string, email: string, items: object[], phone?: string, cartId: string, fields?: object, lastName?: string, subtotal?: number, firstName?: string }
- `POST https://api.mcp.ai/api/remarkety/upload/contacts/batch` — Tool to upload or update multiple contacts in batch. Use when you need to import or synchronize many contacts at once.
  - body: { contacts: object[] }

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

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