Skip to content
FLORA DocsGo to app

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://florafauna-ai.stlmcp.com/

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.

ScopeWhereUse when
local (default)~/.claude.json, current project onlyPersonal use on this project
user~/.claude.json, all your projectsYou want FLORA everywhere you work
project.mcp.json in the repo, checked into gitYour team shares FLORA across this codebase
Terminal window
# Make FLORA available across all your projects
claude mcp add --transport http --scope user flora https://florafauna-ai.stlmcp.com/
# Share with the team via the repo's .mcp.json
claude mcp add --transport http --scope project flora https://florafauna-ai.stlmcp.com/
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://florafauna-ai.stlmcp.com/"
}
}
}

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://florafauna-ai.stlmcp.com/ 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 namespaces every tool. Use /mcp to list them or ask: “What FLORA tools do you have?”