Skip to content
FLORA DocsGo to app
Install
Claude

Claude Code

Install FLORA MCP in Claude Code with one command.

One command. The OAuth flow runs the first time you invoke a tool.

Terminal window
claude mcp add --transport http flora https://agents.flora.ai/mcp

That’s it. Inside any Claude Code session, run /mcpflora should appear in the list. Ask Claude to do anything FLORA-related and the OAuth browser tab opens.

Claude Code stores MCP configs at three scopes. Pick the one that fits.

| Scope | Where | Use when | | --- | --- | --- | | local (default) | ~/.claude.json, current project only | Personal use on this project | | user | ~/.claude.json, all your projects | You want FLORA everywhere you work | | project | .mcp.json in the repo, checked into git | Your team shares FLORA across this codebase |

Terminal window
# Make FLORA available across all your projects
claude mcp add --transport http --scope user flora https://agents.flora.ai/mcp
# Share with the team via the repo's .mcp.json
claude mcp add --transport http --scope project flora https://agents.flora.ai/mcp
Terminal window
# Inside a Claude Code session
/mcp

You should see flora listed. If status is pending, trigger the OAuth flow by asking Claude to call a tool: “List my FLORA Techniques.”

After running with --scope project, your repo will contain a .mcp.json like this:

{
"mcpServers": {
"flora": {
"type": "http",
"url": "https://agents.flora.ai/mcp"
}
}
}

Commit it. Teammates with Claude Code will be prompted to approve the server the first time they open the repo, then they hit the same OAuth flow you did.

Terminal window
claude mcp remove flora

This deletes the local config and token. To also revoke the server-side authorization, go to FLORA → Settings → Connected apps and revoke FLORA MCP — Claude Code.

  • /mcp shows failed — usually a stale token. Run claude mcp remove flora && claude mcp add --transport http flora https://agents.flora.ai/mcp to re-authenticate.
  • OAuth browser doesn’t open — your shell may be sandboxed. Open the URL Claude Code prints and complete the flow manually.
  • Tools not appearing — the FLORA MCP server exposes two tools (execute, search_docs), namespaced as flora:execute and flora:search_docs. Use /mcp to list them or ask: “What FLORA tools do you have?”