Agent-native CRM. 25 tools — contacts, deals, sequences, enrichment waterfall, audit log.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-mgthompo1-anchorr-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Agent-native CRM. 25 tools — contacts, deals, sequences, enrichment waterfall, audit log.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in legal
An MCP (Model Context Protocol) server for performing accessibility audits on webpages using axe-core. Use the results in an agentic loop with your favorite AI assistants (Amp/Cline/Cursor/GH Copilot) and let them fix a11y issues for you!
MCP server for French e-invoicing (XP Z12-013). Manages invoices, validation and compliance.
956k Swiss court decisions: full-text search, citation graph, statute lookup (DE/FR/IT)
API governance for AI coding assistants. Breaking changes, policies, cross-model context.
MCP Security Weekly
Get CVE alerts and security updates for io.github.mgthompo1/anchorr-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The MCP server for Anchorr — 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.
Every CRM was built for humans typing into forms. We built one for AI agents executing pipeline.
| URL | https://anchorr-mcp.mgthompo.workers.dev/mcp |
| Auth | Authorization: Bearer ancr_live_… |
| API key | Mint at anchorr.app/settings → API Keys |
| Catalogue | anchorr.app/mcp — full tool docs and example transcripts |
API 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).
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.
enrich_contact — single contact via email or (first_name, last_name, domain)enrich_company — single company via domain or namebulk_enrich_contacts — up to 200 contact IDs in one call, concurrency-capped, returns aggregate stats and per-contact outcomesContacts & Companies — list_contacts, get_contact, create_contact, bulk_create_contacts, enroll_contact_in_sequence, list_companies, get_company, create_company, update_company.
Deals & Pipeline — list_deals, get_deal, create_deal, update_deal, move_deal_stage, close_deal. Deals carry next_step and stale-deal detection.
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.
Activities — list_activities, log_activity, create_task, complete_task.
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.
Composite reads tuned for "prep me for this meeting" / "brief me on this account" prompts. One resource fetch replaces five or six tool chains.
anchorr://org/overview — pipeline + contacts + agent + tasks snapshotanchorr://deal/{id}/brief — deal + contact + company + recent activities + researchanchorr://contact/{id}/brief — contact + company + activities + deals + sequence enrollments + researchanchorr://company/{id}/brief — company + contacts + deals + activities + researchEvery 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.
{
"tool": "enrich_contact",
"input": { "email": "patrick@stripe.com" }
}
{
"data": { "first_name": "Patrick", "last_name": "Collison", "title": "CEO", "company": "Stripe", "linkedin_url": "..." },
"resolved_by": "apollo",
"served_from": "provider",
"attempts": [
{ "provider": "apollo", "ok": true, "latency_ms": 412, "cost_micros": 50000 }
],
"total_cost_micros": 50000,
"total_latency_ms": 478
}
{
"mcpServers": {
"anchorr": {
"url": "https://anchorr-mcp.mgthompo.workers.dev/mcp",
"headers": {
"Authorization": "Bearer ancr_live_..."
}
}
}
}
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"anchorr": {
"type": "streamable-http",
"url": "https://anchorr-mcp.mgthompo.workers.dev/mcp",
"headers": {
"Authorization": "Bearer ancr_live_..."
}
}
... [View full README on GitHub](https://github.com/mgthompo1/anchorr-mcp#readme)