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 the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by FavCRM.
titlehuman-readable label
readOnlyHint`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-only
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.
231 typed tools β customers, bookings, events, loyalty, invoices, payments, WhatsApp / SMS / email β exposed via MCP. Works with any agentic client that speaks Streamable HTTP transport.
The endpoint supports purpose-built tool profiles selected with ?profile=<name> or X-FavCRM-MCP-Profile:
compact exposes a small search_tools + execute_tool discovery/router surface for large-agent runtimes.platform exposes only superadmin customer-workspace and company-setup operations, works without an active merchant company, and never exposes raw SQL.full remains the default for clients and scanners.Platform operators can start from the dedicated Cursor or Claude Desktop configuration. Ordinary merchant API keys cannot access platform tools.
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 β 231 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.
231 tools across 28 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 |
events | list_event_registrations, get_event_campaign_exclusions | 2 | 0 |
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 |
Superadmin platform tools use a separate scope family:
| Scope | Capability |
|---|---|
platform:customer_setup | Search/create customer workspaces and configure company setup |
platform:catalog | Manage global plan, module, and AI-media catalogs in the full profile |
platform:sql_read | Break-glass SELECT/EXPLAIN access in the full profile |
platform:sql_write | Break-glass DML access in the full profile |
platform:* | All platform capabilities; reserve for controlled internal operators |
SQL scopes must be explicit, and SQL tools remain unavailable in the platform profile even with platform:*.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
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>