Connect the Flabs docs MCP to your AI code editor and let it build the integration for you.
Every page of this documentation is also available to AI coding assistants through our
Model Context Protocol (MCP) server. Point your editor at it once, then ask your
assistant to “integrate with Flabs” — it reads the live API reference, auth flow,
schemas and webhook specs on demand and writes the integration code for you.
MCP server URL: https://developer.flabslis.com/mcp
The MCP exposes the same content you’re reading now — the auth token flow, CRM lead/booking
endpoints, the billing pre-booking API, webhook events and the OpenAPI specs — as structured,
searchable context. Your assistant pulls only the pages it needs, so it generates code against
the current API instead of guessing.
Once the server is connected, describe what you want in plain language. The assistant will
search the docs, read the relevant endpoints, and scaffold the code. A few prompts that work well:
Using the flabs-developer MCP, add a Flabs integration to this project:authenticate with my client credentials, fetch my branches, and create a CRM lead.
Set up a webhook handler for Flabs bill.completed and report.completed events,following the payload structure in the flabs-developer docs.
I'm a corporate (party-scoped) account. Wire up test-pricing lookups and leadcreation scoped to my corporateUser, per the Flabs party-scoped guide.
The assistant pulls the exact request/response shapes, required fields, rate limits and
error codes from the docs — so the generated client matches the real API.
The MCP only exposes public documentation. Never put your clientID,
clientSecret, or tokens into prompts or commit them to source control — load them
from environment variables or a secrets manager. See the
Authentication guide.
Tell it your account mode. Mention whether you’re catch-all (default) or
party-scoped so it scopes calls correctly.
Name your stack. “in Node/Express”, “in Python/FastAPI”, etc. produces idiomatic code.
Ask it to verify against the docs. “Double-check the required fields against the
flabs-developer MCP” catches missed parameters before you run anything.