CursorPool
← 返回首页
FavCRM logo

FavCRM

0

150 多个带类型的 MCP 工具,用于无头 CRM 操作,包括预订、忠诚度、支付与 WhatsApp/SMS,并通过 npx skills add favcrm/mcp 提供原生 agent skill。

9 个 Skill

# FavCRM Agentic Registration

Use this skill when a new user wants to sign up for FavCRM without leaving an MCP client. The real product flow is the no-auth MCP tool pair `register_organisation_request` -> `register_organisation_verify`.

## Operating Rules

- Use MCP tools, not the `favcrm` CLI. No API key exists before registration completes.
- Primary path is `register_organisation_request` followed by `register_organisation_verify`.
- Treat `/v6/dev/signup` and `/v6/dev/verify` as REST sandbox fallback/docs only.
- Never ask the user to paste the API key into a repo, prompt history file, shared config, or source code.
- If the user already has a FavCRM account, tell them to sign in and create an MCP key from portal settings.

## Required Inputs

- `email`: owner email that receives the 6-digit code.
- `organisationName`: business or brand name.

## Optional Inputs

- `industry`: one of `beauty`, `fitness`, `tutoring`, `retail`, `hospitality`, `services`, `other`.
- `country`: ISO 3166-1 alpha-2 country code, such as `HK`, `US`, `GB`.
- `timezone`: IANA timezone, such as `Asia/Hong_Kong`.

## Standard Flow

1. Collect required inputs and optional fields if known.
2. Call `register_organisation_request`.
3. Tell the user to check the masked email for the 6-digit code.
4. When the user provides the code, call `register_organisation_verify` with `requestId` and `code`.
5. Return the `loginUrl`, workspace IDs if useful, and secure key handling guidance.
6. Tell the user to set the API key as the MCP Bearer token or environment variable for future calls.

Read `references/agentic-registration-flow.md` for exact call shapes and failure handling.