
FavCRM 係一個 agentic CRM,以單一 MCP server expose 喺 https://api.favcrm.io/mcp。任何 MCP-compatible client 都 call 到。呢篇講兩個連接方法 — 將 client 指向 server,或者俾 agent 幫你 sign up — 同埋 Cursor、Vercel v0、Claude、ChatGPT 嘅準確最新設定。
兩個連接方法
方法 A — 帶 key。 喺 favcrm.io/signup 開一個 workspace、copy 你嘅 fav_mcp_* key、放入 client 嘅 MCP config 做 Bearer token。即刻全部地方都 work。
方法 B — agentic signup。 先將 client 指向 server(冇 key),然後同 agent 講:「Sign me up for FavCRM。」 佢 call register_organisation_request,你由 inbox 貼返 6 位數 code,一個 fav_mcp_* key 就落喺 chat。冇 portal、冇 form。(睇 agentic registration 點 work。)
兩個方法最後都係一個 key 綁定一個用戶同 workspace,加埋 190+ 個 typed tools 俾你個 agent call。
Cursor
Cursor 讀 ~/.cursor/mcp.json(或者 project 入面嘅 .cursor/mcp.json)。用 env variable 等個 key 唔會入你 repo:
{
"mcpServers": {
"favcrm": {
"url": "https://api.favcrm.io/mcp",
"headers": {
"Authorization": "Bearer ${env:FAVCRM_API_KEY}"
}
}
}
}
喺 Cursor process 讀到嘅地方 export 個 key:
export FAVCRM_API_KEY=fav_mcp_xxxxx
Cursor 經 Streamable HTTP 連接、跑 tools/list、surface 個 catalog。叫佢做真實 CRM 工作 — 冇 SDK、冇 REST docs。完整步驟:Cursor integration。
Vercel v0
v0 由 Marketplace 原生安裝 FavCRM — set FAVCRM_MCP_URL = https://api.favcrm.io/mcp,v0 就喺 prompt 直接 call tools。完整步驟:Vercel v0 integration。
Claude
Claude 經 OAuth 2.0 + PKCE 同 dynamic client registration 連接。Server 已經 live 喺 api.favcrm.io/mcp;Connector listing 仲審緊,所以今日係經 OAuth flow / custom connector 連接,唔係一 click directory 安裝。設定:Claude integration。
ChatGPT
MCP server 已經 live;ChatGPT Apps Directory listing 喺 OpenAI 度審緊。批咗之後就由 directory 安裝,用白話跑你個 CRM。現狀同設定:ChatGPT integration。
其他 client
同一個 endpoint 喺 Smithery、Windsurf、Continue.dev、Zed、Cline、Roo Code、Replit Agent 都 work — 任何講 MCP 嘅都得。將佢指向 https://api.favcrm.io/mcp,帶個 Bearer key。
第一個指令
連接咗之後,試個真實嘅:
「List 我嘅 booking services,然後幫聽日下晝兩點 create 一個 test booking。」
Agent chain list_services → get_available_slots → create_booking。如果跑到,你已經喺 editor 操作緊一個 CRM。
下一步
喺 favcrm.io/signup 免費開始 — 免費 tier 覆蓋 100 位客戶、每月 200 個預約。睇 MCP catalog 嘅完整 tool surface,或者 connect 全部 190+ 個 tools 嘅深入導覽。

