// SETUP
Generate an API key.
Go to Settings → API Keys, click Create key, and pick a scope. Read keys for safe-by-default agents, Read + Write for task agents that mutate boards.
// Remote MCP
Flux hosts a Model Context Protocol server at
/api/mcp
. Connect Claude Code, Cline, or Cursor - they'll read your boards,
move cards, leave comments, and commit work autonomously.
Explore project & summarise
Add dark mode toggle
Use custom favicon
Add unit conversion
Agent activity
list_workspaces()


// SETUP
Go to Settings → API Keys, click Create key, and pick a scope. Read keys for safe-by-default agents, Read + Write for task agents that mutate boards.
// CONFIG
Add the MCP server entry to your client config. Claude Code, Cline, Cursor - all supported via plain HTTP transport.
// USE
Your agent reads boards, moves cards, posts comments, reorders columns. Every action is logged and undoable from the Flux UI.
~/.claude/claude_desktop_config.json
{
"mcpServers": {
"flux": {
"type": "http",
"url": "https://flux.umin.ai/api/mcp",
"headers": {
"Authorization": "Bearer flux_YOUR_API_KEY"
}
}
}
}list_workspaces
List workspaces the user belongs to
list_boards
List boards in a workspace
get_board
Full board - columns + cards
list_cards
All cards in a column
get_card
Card detail with comments
search_cards
Keyword search across all boards
create_card
Create a card in a column
update_card
Update title, description, due date
move_card
Move a card across columns
reorder_cards
Reorder cards within / across columns
create_column
Add a new column to a board
add_comment
Post a comment on a card
"List my workspaces"
"Show me all boards in the RedBite workspace"
"Create a card "Fix auth bug" in the To Do column"
"Move PROJ-42 to In Review"
"Search for cards about onboarding"
/api/mcp /api/mcp /api/mcp
Auth: Authorization: Bearer flux_…
MCP is an open standard that lets AI agents connect to external tools over a uniform interface. Flux hosts an MCP server so agents like Claude, Cline, and Cursor can read your boards, move cards, and leave comments autonomously.
Any MCP-compatible client works - Claude Code, Claude Desktop, Cline, Cursor, and any client that supports HTTP-based MCP transport. Configuration takes under a minute.
No. MCP uses your standard Flux API key. Go to Settings, create a key with the scopes you need (Read for safe queries, Read + Write for task agents), and add it to your client config.
Yes. All MCP communication uses HTTPS with Bearer token authentication. API keys have granular scopes (read, write) and are workspace-scoped. Every action is logged and undoable from the Flux UI.
Agents can list workspaces and boards, read card details with comments and checklists, create and update cards, move cards across columns, reorder columns, post comments, and search across all boards - 12 tools in total.
// Ready to wire it up?
Free with every Flux account. Read scope is safe - task agents need Write.