FavCRM MCP Server

Agentic CRM for service businesses — bookings, customers, WhatsApp, loyalty, invoicing.

Remote serverstreamable-http

What is the FavCRM MCP server?

Agentic CRM for service businesses — bookings, customers, WhatsApp, loyalty, invoicing. The favcrm mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

229 typed tools — customers, bookings, loyalty, invoices, payments, WhatsApp / SMS / email — exposed via MCP. Works with any agentic client that speaks Streamable HTTP transport.

Its toolset

Everything the assistant can do here goes through one of these:

  • title — human-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
  • Client — Status
  • Cursor — ✅ Live
  • Smithery — ✅ Live
  • Scope — Sample tools
  • contacts — search_members, get_member_profile, create_account, attach_tags
  • customer_segments — list_segments, preview_segment_count, set_segment_members
  • custom_fields — list_custom_fields, create_custom_field, set_custom_field_values

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration

You will need one environment variable: FAVCRM_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of team communication servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. FavCRM's toolset — title, readOnlyHint, destructiveHint and 11 more — is a fair guide to whether it matches your workflow. It is maintained by io.favcrm; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch FavCRM.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the favcrm mcp server does with a few real requests.

Available tools

ToolWhat it does
titlehuman-readable label
readOnlyHinttrue for list_* / get_* / search_* / etc.
destructiveHinttrue for delete_* / cancel_* / void_* / refund_*
openWorldHinttrue for tools that hit external services (WhatsApp, Stripe, email)
idempotentHinttrue for set_* / update_* / upsert_* and read-only
ClientStatus
Cursor✅ Live
Smithery✅ Live
ScopeSample tools
contactssearch_members, get_member_profile, create_account, attach_tags
customer_segmentslist_segments, preview_segment_count, set_segment_members
custom_fieldslist_custom_fields, create_custom_field, set_custom_field_values
bookingslist_services, get_available_slots, create_booking
membershiplist_tiers, enrol_membership, earn_loyalty_points

How to install the FavCRM MCP server

{
  "mcpServers": {
    "favcrm": {
      "command": "npx",
      "args": ["-y", "skills"],
      "env": {
        "FAVCRM_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
FAVCRM_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use FavCRM to title.
  • Use FavCRM to readOnlyHint.
  • Use FavCRM to destructiveHint.

Frequently asked questions

It connects FavCRM to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (title, readOnlyHint, destructiveHint, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with FavCRM directly.