Agentic CRM for service businesses β bookings, customers, WhatsApp, loyalty, invoicing.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Install snippets, examples, and docs for the FavCRM Model Context Protocol server. The server itself is hosted at
https://api.favcrm.io/mcpβ this repo is for client setup and community examples.
229 typed tools β customers, bookings, loyalty, invoices, payments, WhatsApp / SMS / email β exposed via MCP. Works with any agentic client that speaks Streamable HTTP transport.
For large-agent runtimes, the same endpoint supports a compact discovery/router profile: add ?profile=compact or X-FavCRM-MCP-Profile: compact to expose a small search_tools + execute_tool surface instead of the full catalog. The default profile remains full for clients and scanners.
Building against the FavCRM headless backend with an AI Agent? Teach your AI our best practices, standard operating procedures, and MCP tool shapes by installing our official skills:
See the skills/ directory for the full list of available agent skills.
Public agent skills live in skills/: portable workflow packages for agentic registration, team onboarding, channel setup, booking operations, customer lifecycle, comms approval, billing/commerce, content, sales ops, knowledge training, and reporting. They are source-readable for agents and marketing, while FavCRM runtimes install vetted versions through the platform skill registry.
| Client | Status | Setup |
|---|---|---|
| Vercel v0 | β Live | Marketplace install β auto-provisions a workspace + injects env vars |
| Cursor | β Live | mcp.json snippet |
| Smithery | β Live | smithery mcp add favcrm/favcrm |
| Claude Desktop / Connector | π§ Pending | OAuth provider (Phase 3, ~3 weeks) |
| ChatGPT Apps Directory | π§ Pending | Listing under review |
| Windsurf / Continue.dev / Zed | β Works | Same mcp.json shape as Cursor |
Two ways:
Option A β your agent signs you up (no form, no portal click)
Connect FavCRM to your client first (see Cursor section below) using a placeholder env var. Then ask your agent:
"Sign me up for FavCRM. Yoga studio called Stretch + Breathe in Hong Kong."
The agent will:
register_organisation_request β server emails a 6-digit code to youregister_organisation_verify β server returns a fresh fav_mcp_* keySee skills/favcrm-agentic-registration for the portable SKILL.md workflow.
Behind the scenes: 10-min OTP, real email-ownership check, per-IP rate limit (3/hour, 20/day). No phishing surface, no fake demos.
Option B β sign up the traditional way
favcrm.io/signup β portal β Settings β MCP Keys β copy the fav_mcp_* value.
Existing FavCRM merchants: same place, no plan upgrade needed for MCP access.
Free tier (both options): 100 customers, 200 bookings/month, 1k MCP calls/month, 30-day trial of higher limits.
The favcrm CLI can also run the zero-state flow:
Team invitees can accept without an existing API key:
Verified shape, cursor.com/docs/mcp.
~/.cursor/mcp.json (or .cursor/mcp.json in your project):
Then export the key β anywhere your Cursor process reads env vars:
Restart Cursor β Settings β MCP β favcrm connects β 229 tools land in chat.
Why
${env:VAR}instead of inline? Cursor interpolates env vars at request time so the key never lands in your repo or shared config.
favcrm.io on Smithery β install via CLI:
For a project-scoped install, smithery mcp add favcrm/favcrm --client cursor writes the right mcp.json block.
π§ OAuth-based connector pending Phase 3. Once live:
claude.com β Connectors β Add custom connectorhttps://api.favcrm.io/mcpUntil then, advanced users can wire FavCRM into Claude Desktop's claude_desktop_config.json via the same Bearer-header pattern as Cursor (community-only path; not currently in Anthropic's connector directory).
π§ Apps Directory listing under review. Once approved:
Once your config is live, ChatGPT/Cursor/Claude will list tools automatically. To smoke-test from the command line:
See examples/ for more.
229 tools across 27 scopes. Every tool ships with annotations:
title β human-readable labelreadOnlyHint β true for list_* / get_* / search_* / etc.destructiveHint β true for delete_* / cancel_* / void_* / refund_*openWorldHint β true for tools that hit external services (WhatsApp, Stripe, email)idempotentHint β true for set_* / update_* / upsert_* and read-onlyClients can use these to gate destructive calls or estimate cost. The full catalog at https://api.favcrm.io/.well-known/mcp/server-card.json is the source of truth β listings here are summaries only.
Agents working from a compact or context-sensitive tool set should use search_tools to discover operations, then execute_tool to run the selected tool. Use query_favcrm_platform for platform docs before guessing behavior or argument shapes. For merchant-specific facts, policies, pricing notes, FAQs, or brand guidance, use query_company_knowledge; it returns snippets with source document IDs rather than full documents.
| Scope | Sample tools | Read-only | Write |
|---|---|---|---|
contacts | search_members, get_member_profile, create_account, attach_tags | 5 | 6 |
customer_segments | list_segments, preview_segment_count, set_segment_members | 4 | 4 |
custom_fields | list_custom_fields, create_custom_field, set_custom_field_values | 3 | 4 |
bookings | list_services, get_available_slots, create_booking | 12 | 15 |
membership | list_tiers, enrol_membership, earn_loyalty_points | 4 | 3 |
shop | list_products, get_order, create_order | 8 | 6 |
invoices | list_invoices, mark_invoice_paid | 4 | 4 |
campaigns | list_campaigns, send_campaign (gated) | 5 | 3 |
blog | list_posts, publish_post | 14 | 13 |
Agents should call report_agent_issue when an MCP-native path is missing, a tool schema is confusing, a tool fails unexpectedly, or they had to fall back to REST/SDK behavior. Include expected behavior, actual behavior, steps tried, relevant tool calls/logs, AI analysis, and clarification questions. FavCRM routes these reports to the platform support queue for triage.
Example:
Agents can inspect and preflight plan access without leaving MCP:
Use check_plan_operation before writes that may hit module, scope, subscription, or quota gates. If the result includes upgradeAction, show the user the returned action. Stripe links are only created by create_plan_upgrade_link with confirm=true.
| Token kind | Lifetime | Use case |
|---|---|---|
fav_mcp_* API key | Long-lived, revocable | Cursor, Windsurf, Zed, Continue.dev, scripts |
fav_v0_* partner token | Per-Vercel-project, scoped | v0 / Vercel install only |
| OAuth bearer (15-min JWT + 30-day refresh) | Short-lived | Claude Connectors (Phase 3), ChatGPT Apps |
| OTP-issued JWT (60 min) | Short-lived | Interactive humans (merchant portal exchange) |
Marketplace tokens (fav_v0_*, OAuth-issued) are hard-blocked from superadmin tools (raw SQL, plan management) regardless of underlying scopes β defence in depth at the request layer, not just per-token RBAC.
| Tier | Price | Limits |
|---|---|---|
| Free | $0 | 100 customers Β· 200 bookings/mo Β· 1k MCP calls/mo |
| Lite | $19 / mo | 1 seat Β· email comms Β· BYO-AI via your agent |
| Starter | $49 / mo | 3 seats Β· 1M AI credits Β· WhatsApp + SMS Β· meeting notes |
| Enterprise | Custom | Unlimited seats Β· multi-location Β· custom routing |
Full table: favcrm.io/pricing.
examples/.skills/.CONTRIBUTING.md.SECURITY.md; do not open public vulnerability issues.Marketplace-ready 1:1 icons with background plate, in assets/:
| File | Use |
|---|---|
assets/icon.png | 512Γ512 PNG β Cursor / Smithery / mcp.so listing |
assets/favcrm-icon-256-dark.svg | 1:1 SVG, ink plate, light glyph β most marketplaces |
assets/favcrm-icon-256-light.svg | 1:1 SVG, canvas plate, ink glyph β light-themed UIs |
assets/favcrm-icon-256-dark.png | 256Γ256 PNG fallback |
All icons are 1:1 aspect ratio with rounded-square plate (48px corner radius on 256-unit grid) and centered "fav." wordmark glyph.
This repo (docs + examples) is MIT β see LICENSE. The hosted MCP server is proprietary FavCRM SaaS; install requires a FavCRM account.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/favcrm)<a href="https://allmcps.com/mcp/favcrm"><img src="https://allmcps.com/api/badge/favcrm?style=directory" alt="FavCRM on AllMCPs" /></a>