Skip to main content

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.

Fastest way to add Flowboard to your app is to connect the Flowboard Docs MCP to your IDE, then let your coding agent do the setup for you.
This page is about the Flowboard Docs MCP at https://docs.flow-board.co/mcp. It exposes the Flowboard documentation directly to your IDE so your agent can follow the latest setup steps automatically.This works well for any Flowboard-supported stack, including React Native, Expo development builds, Flutter, iOS / Swift (UIKit or SwiftUI), and native Android.

Before you start

Make sure you have:
  • An existing app project opened in your IDE
  • Access to Flowboard Studio
  • One published flow
  • One API key for your mobile app integration
If you are using Expo, Expo Go is not supported because Flowboard uses native modules. Use an Expo development build, expo prebuild, or EAS Build instead.

1. Add the Flowboard Docs MCP to your IDE

Create .cursor/mcp.json in your project, or ~/.cursor/mcp.json for a global setup.
{
  "mcpServers": {
    "flowboardDocs": {
      "url": "https://docs.flow-board.co/mcp"
    }
  }
}
Create .vscode/mcp.json in your workspace.
{
  "servers": {
    "flowboardDocs": {
      "type": "http",
      "url": "https://docs.flow-board.co/mcp"
    }
  }
}
Open Windsurf SettingsToolsWindsurf SettingsAdd Server. For raw config, edit ~/.codeium/mcp_config.json.
{
  "mcpServers": {
    "flowboardDocs": {
      "serverUrl": "https://docs.flow-board.co/mcp"
    }
  }
}
Open the agent panel, click ...MCP ServersManage MCP ServersView raw config, then update mcp_config.json.
{
  "mcpServers": {
    "flowboardDocs": {
      "serverUrl": "https://docs.flow-board.co/mcp"
    }
  }
}
If your Antigravity build expects url instead of serverUrl, use the same endpoint under url.
Add the MCP with the CLI:
codex mcp add flowboardDocs --url https://docs.flow-board.co/mcp
Or add it directly in ~/.codex/config.toml:
[mcp_servers.flowboardDocs]
url = "https://docs.flow-board.co/mcp"

2. Ask your agent to do the setup

Once the MCP is connected, open your app root in the IDE and paste a prompt like this:
Using the Flowboard MCP Tools doc Docs, install and setup Flowboard inside my app. My stack is [your stack]. Make sure to add a button to show a flow on the first screen.
Be explicit about your stack and entry file. Example: My stack is SwiftUI and the first screen is ContentView.swift. Example: My stack is React Native and the first screen is App.tsx.

3. What the agent should do

With the docs MCP available, your IDE agent should be able to:
  • Choose the correct Flowboard setup path for your stack
  • Install the right package or SDK
  • Initialize Flowboard in app startup
  • Add any required provider or runtime wiring
  • Add a button on the first screen that launches a flow
  • Leave the app in a runnable state

4. Verify

After the agent finishes:
  • Start the app with your normal development setup
  • Open the first screen
  • Tap the button the agent added
  • Confirm your published flow opens correctly
If you prefer to do the integration manually, use the Quick start guide.