Documentation Index
Fetch the complete documentation index at: https://docs.flow-board.co/llms.txt
Use this file to discover all available pages before exploring further.
Connect AI tools to Flowboard with the Model Context Protocol (MCP).Flowboard MCP gives compatible AI clients access to your Flowboard app so they can inspect live flows, work against the visual editor draft, and read analytics.
Connect
- MCP URL:
https://mcp.flow-board.co - Auth:
Authorization: Bearer <your_mcp_key> - MCP keys are generated with
flows:read,flows:write, andstats:read
Setup by tool
Flowboard works best in MCP clients that let you send a custom
Authorization header directly.Cursor
Cursor
Create
.cursor/mcp.json in your project, or ~/.cursor/mcp.json for a global setup.VS Code
VS Code
Create
.vscode/mcp.json in your workspace.Windsurf
Windsurf
Open Windsurf Settings → Tools → Windsurf Settings → Add Server. For raw config, edit
~/.codeium/mcp_config.json.Antigravity
Antigravity
Open the agent panel, click If your Antigravity build expects
... → MCP Servers → Manage MCP Servers → View raw config, then update mcp_config.json.url instead of serverUrl, use the same endpoint under url.What Flowboard exposes
Flowboard MCP exposes product capabilities, not raw database access. In practice, it is backed by these stores:| Backing store or source | Exposed through MCP |
|---|---|
onboardings | Published flow metadata, live runtime JSON, localized screens, publish state |
onboardingDrafts | Visual-editor draft project, draft versions, and draft updates |
audiences | Live flow resolution for an app/install context |
screenCatalogItems | Built-in Flowboard templates plus team and app screen-library items used for generation and editing |
aiEditOperations + onboardings.aiLock | Async edit status and draft locking for long-running editor edits |
BigQuery analytics dataset (raw_events) | Read-only app, flow, viewer, and experiment metrics |
- Flowboard templates:
screenCatalogItemswithsourceType: flowboard - Team and app library items:
screenCatalogItemswithsourceType: team, filtered byteamIdand optionallysourceAppId
Editor-aware workflows
Flowboard MCP is aware of the Flowboard editor model:- It can read the current draft and the published flow separately
- AI edits are draft-first and do not publish automatically
- Screen edits support a preview-first flow before apply
- Long-running edits are tracked and can temporarily lock the draft to avoid conflicting writes
- Generate a new flow
- Edit an existing draft flow
- Preview or apply a single-screen edit
- Generate a screen from an image
- Insert a generated screen into an existing flow
- Inspect flow analytics while iterating on the draft
Example prompts
- “Fetch the draft version of flow
flow_123and summarize each screen.” - “Preview a rewrite of the pricing screen to make it feel more premium, but do not apply it yet.”
- “Insert a new testimonial screen before the paywall.”
- “Show the last 30 days of funnel metrics for flow
flow_123.”