Skip to content
FLORA DocsGo to app
Get started

FLORA MCP

Run FLORA Techniques from any MCP-compatible agent — Claude, Cursor, VS Code, and more.

The FLORA MCP server lets any Model Context Protocol client — Claude, Cursor, VS Code, Windsurf, Zed, and others — discover and run your Techniques in plain English. No code, no API wiring. Connect once, then ask the agent to generate, iterate, branch, and batch using the same Techniques your team builds in FLORA.

Once FLORA MCP is connected, these prompts work in any MCP-compatible agent:

  • “What FLORA Techniques would work for this campaign brief?” — the agent calls list_techniques and returns Technique cards inline.
  • “Run the Thumbnail v3 Technique with this brief and give me a 3×3 grid.” — the agent calls run_technique and renders results inline as they finish.
  • “Take #4 and #7 and make 10 more variations in the same direction.” — the agent re-runs the Technique with prior outputs as image references.
  • “Now run those through the Social Motion Technique. I need 3-second loops for IG.” — the agent branches into another Technique, carrying the context forward.
  • “Pull the localization sheet from Drive and run the Technique for all 12 markets.” — a coding agent loops over a spreadsheet and batches the calls.
  1. Install in your client

    Pick your client and run the one-line install:

    • Claude Code: claude mcp add --transport http flora https://florafauna-ai.stlmcp.com/
    • Claude.ai / Claude Desktop: Settings → Connectors → Add custom connector → paste the URL
    • Cursor: Add to ~/.cursor/mcp.json
    • VS Code: code --add-mcp '{"name":"flora","type":"http","url":"https://florafauna-ai.stlmcp.com/"}'

    Full instructions for every supported client.

  2. Sign in with FLORA

    The first tool call triggers an OAuth flow. Sign in with the same account you use at app.flora.ai. Your client stores the token; you won’t be asked again until it expires.

  3. Ask the agent to run something

    Try: “List my FLORA Techniques and pick one that generates product thumbnails.”

    The agent will call list_techniques, show the results, and ask which one to run.

FLORA MCP wraps the same REST API your developers use. Every API operation is exposed as a tool the agent can call:

ResourceTools
Techniqueslist_techniques, retrieve_technique, create_technique_run, retrieve_technique_run
Runsstart_technique_run, start_generation_run
Assetscreate_asset, complete_asset, retry_asset, list_assets, retrieve_asset
Projectslist_projects, create_project, retrieve_project, list_project_nodes, attach_project_asset
Workspaceslist_workspaces
Modelslist_models
Feedbackrecord_feedback

See the full tools reference for parameters and return shapes.

The API is for engineers who want to ship integrations. MCP is for everyone else — designers, marketers, PMs, ops — who already work in an AI agent and want FLORA there too. Both surfaces hit the same Techniques and the same credits.

APIMCP
AudienceEngineersAnyone using an AI agent
SetupAPI key + codeConnect once via OAuth
IterationProgrammaticConversational
Best forPipelines, batches, automationDiscovery, ideation, ad-hoc batches
Combine withWebhooks, queues, your stackOther MCP servers in the same chat (Drive, Slack, GitHub, …)