Claude Code
Install FLORA MCP in Claude Code with one command.
One command. The OAuth flow runs the first time you invoke a tool.
Install
Section titled “Install”claude mcp add --transport http flora https://florafauna-ai.stlmcp.com/That’s it. Inside any Claude Code session, run /mcp — flora should appear in the list. Ask Claude to do anything FLORA-related and the OAuth browser tab opens.
Scopes
Section titled “Scopes”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 |
# Make FLORA available across all your projectsclaude mcp add --transport http --scope user flora https://florafauna-ai.stlmcp.com/
# Share with the team via the repo's .mcp.jsonclaude mcp add --transport http --scope project flora https://florafauna-ai.stlmcp.com/Verify
Section titled “Verify”# Inside a Claude Code session/mcpYou should see flora listed. If status is pending, trigger the OAuth flow by asking Claude to call a tool: “List my FLORA Techniques.”
Project-scoped install (.mcp.json)
Section titled “Project-scoped install (.mcp.json)”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.
Remove
Section titled “Remove”claude mcp remove floraThis 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.
Common pitfalls
Section titled “Common pitfalls”/mcpshowsfailed— usually a stale token. Runclaude 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
/mcpto list them or ask: “What FLORA tools do you have?”
- Authentication details — what OAuth grants the connection.
- Tools reference — every tool FLORA MCP exposes.
- Recipes — concrete workflows to try.