← v16 index

/docs

STORE · 4-section rail · prose right · mobile drawer (UX-audit fix)
v16
DESKTOP · 1280px · /docs/install
floom.dev/docs/install
INSTALL · CLAUDE DESKTOP

Install any Floom app in Claude.

Claude Desktop speaks MCP. Floom exposes every app as an MCP server. That means you paste one JSON block and Claude can now call the app's actions like any other tool.

Quick start

Open your Claude Desktop config file:

~/Library/Application Support/Claude/claude_desktop_config.json

Add the Floom entry:

{
  "mcpServers": {
    "opendraft": {
      "url": "https://mcp.floom.dev/opendraft",
      "headers": { "Authorization": "Bearer flm_live_…" }
    }
  }
}

Restart Claude Desktop. Ask it to use opendraft to draft a reply.

Config schema

Every Floom MCP server accepts:

  • url — the MCP endpoint (https required).
  • headers.Authorization — your Floom bearer token.
  • env — optional per-app environment overrides.

Bearer tokens

Create a token in /studio/settings. Tokens are scoped to a user. Apps you publish use a separate creator-scope token.

MOBILE · 375px · rail becomes drawer (audit fix)
floom.dev/docs/install
floom · docs
INSTALL · CLAUDE DESKTOP

Install any Floom app in Claude.

Paste one JSON block. Claude can call every action.

{
  "mcpServers": {
    "opendraft": {
      "url": "https://mcp.floom.dev/opendraft"
    }
  }
}
SPEC NOTES