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.
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.
Every Floom MCP server accepts:
url — the MCP endpoint (https required).headers.Authorization — your Floom bearer token.env — optional per-app environment overrides.Create a token in /studio/settings. Tokens are scoped to a user. Apps you publish use a separate creator-scope token.
Paste one JSON block. Claude can call every action.
{
"mcpServers": {
"opendraft": {
"url": "https://mcp.floom.dev/opendraft"
}
}
}