{
  "markdown": "# Anchorr MCP\n\nThe MCP server for [Anchorr](https://anchorr.app) — the agent-native CRM. 25 tools across contacts, companies, deals, sequences, activities, and an enrichment waterfall (Apollo → Hunter → AI research) with shared cache and per-call audit.\n\n> Every CRM was built for humans typing into forms. We built one for AI agents executing pipeline.\n\n## Connect\n\n| | |\n|---|---|\n| **URL** | `https://anchorr-mcp.mgthompo.workers.dev/mcp` |\n| **Auth** | `Authorization: Bearer ancr_live_…` |\n| **API key** | Mint at [anchorr.app/settings](https://anchorr.app/settings) → API Keys |\n| **Catalogue** | [anchorr.app/mcp](https://anchorr.app/mcp) — full tool docs and example transcripts |\n\nAPI keys are scoped per-tool category — issue narrow keys per agent (e.g. enrichment-only for a research bot, `contacts:write + sequences:write` for a prospecting agent).\n\n## Tool surface\n\n**Enrichment** — Resolve contacts and companies through a provider waterfall. Cache is shared with the Anchorr web product, so a hit from Cursor warms the kanban; a hit from the kanban warms the agent.\n\n- `enrich_contact` — single contact via email or `(first_name, last_name, domain)`\n- `enrich_company` — single company via domain or name\n- `bulk_enrich_contacts` — up to 200 contact IDs in one call, concurrency-capped, returns aggregate stats and per-contact outcomes\n\n**Contacts & Companies** — `list_contacts`, `get_contact`, `create_contact`, `bulk_create_contacts`, `enroll_contact_in_sequence`, `list_companies`, `get_company`, `create_company`, `update_company`.\n\n**Deals & Pipeline** — `list_deals`, `get_deal`, `create_deal`, `update_deal`, `move_deal_stage`, `close_deal`. Deals carry `next_step` and stale-deal detection.\n\n**Sequences & Templates** — `list_sequences`, `get_sequence`, `create_sequence`, `update_sequence`, `list_templates`, `create_template`, `update_template`. Email / wait / task steps with `{{first_name}}` / `{{company}}` placeholders.\n\n**Activities** — `list_activities`, `log_activity`, `create_task`, `complete_task`.\n\n**Agent** — `get_agent_overview`, `get_agent_config`, `update_agent_config`, `list_candidates`, `update_candidate_status`. The autonomous agent that runs continuous prospecting + reply qualification on top of the CRM.\n\n## Resources\n\nComposite reads tuned for \"prep me for this meeting\" / \"brief me on this account\" prompts. One resource fetch replaces five or six tool chains.\n\n- `anchorr://org/overview` — pipeline + contacts + agent + tasks snapshot\n- `anchorr://deal/{id}/brief` — deal + contact + company + recent activities + research\n- `anchorr://contact/{id}/brief` — contact + company + activities + deals + sequence enrollments + research\n- `anchorr://company/{id}/brief` — company + contacts + deals + activities + research\n\n## Audit & cost\n\nEvery tool call is logged to `mcp_audit_log` with the calling key, parameters, success state, and duration. Every enrichment is logged to `enrichment_requests` with the per-attempt provider trail and cost in micro-dollars (USD × 10⁶). Cache hits are free.\n\n## Example\n\n```json\n{\n  \"tool\": \"enrich_contact\",\n  \"input\": { \"email\": \"patrick@stripe.com\" }\n}\n```\n\n```json\n{\n  \"data\": { \"first_name\": \"Patrick\", \"last_name\": \"Collison\", \"title\": \"CEO\", \"company\": \"Stripe\", \"linkedin_url\": \"...\" },\n  \"resolved_by\": \"apollo\",\n  \"served_from\": \"provider\",\n  \"attempts\": [\n    { \"provider\": \"apollo\", \"ok\": true, \"latency_ms\": 412, \"cost_micros\": 50000 }\n  ],\n  \"total_cost_micros\": 50000,\n  \"total_latency_ms\": 478\n}\n```\n\n## Use with Claude Desktop\n\n```json\n{\n  \"mcpServers\": {\n    \"anchorr\": {\n      \"url\": \"https://anchorr-mcp.mgthompo.workers.dev/mcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer ancr_live_...\"\n      }\n    }\n  }\n}\n```\n\n## Use with Cursor\n\nAdd to `~/.cursor/mcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"anchorr\": {\n      \"type\": \"streamable-http\",\n      \"url\": \"https://anchorr-mcp.mgthompo.workers.dev/mcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer ancr_live_...\"\n      }\n    }\n  }\n}\n```\n\n## License\n\nSource code in this directory is part of the Anchorr platform. The hosted MCP server is free to use with an Anchorr account; usage is metered against your Anchorr plan's quotas.\n",
  "bytes": 4200,
  "sha": "e299e98791dcfd7ee2f58a5e63c580d0d08d168031aab5696c7e49ca65bb0352",
  "repo_slug": "mgthompo1/anchorr-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_mgthompo1_anchorr_mcp_93c8a215/readme"
}