# Autobound — how to use (mcp.ai)

Connect your Autobound account and use 2 tools for AI sales tools straight from your AI agent. Connect with your own API key. Autobound provides AI-driven sales engagement solutions, offering personalized content generation and actionable insights to enhance sales outreach.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/autobound/generate/insights` — Tool to generate ranked prospect or company insights. Use after resolving identifiers to retrieve the most relevant insights.
  - body: { userEmail?: string, contactEmail?: string, inputVariables?: object, insightSubtype?: string|string[], userCompanyUrl?: string, userLinkedinUrl?: string, contactCompanyUrl?: string, contactLinkedinUrl?: string }
- `POST https://api.mcp.ai/api/autobound/generate/personalized/content` — Tool to generate hyper-personalized sales content. Use after confirming contact and user details.
  - body: { n?: integer, model?: string, language?: string, userName?: string, userEmail?: string, wordCount?: integer, salesAsset?: string, contactName?: string, contentType: string, contactEmail?: string, writingStyle?: string, userCompanyUrl?: string, enabledInsights?: string[], userCompanyName?: string, userLinkedinUrl?: string, contentToRewrite?: string, disabledInsights?: string[], valueProposition?: string, additionalContext?: string, contactCompanyUrl?: string, customContentType?: string, contactCompanyName?: string, contactLinkedinUrl?: string, customWritingStyle?: string, sequenceNumberOfEmails?: integer, userCompanyLinkedinUrl?: string, contactCompanyLinkedinUrl?: string }

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

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