Step 1: Connect your agent in 10 seconds
Every Lumiqa workspace exposes a native MCP server at https://lumiqa.io/mcp/<slug>. It speaks JSON-RPC 2.0 — initialize, tools/list, tools/call — and authenticates with a workspace key shaped lk_live_… sent as a Bearer header. Any MCP-capable agent stack can speak it.
If you live in Claude Desktop or Claude Code, the MCP path is one command. Lumiqa shows up as a first-class tool group inside the agent — the LLM can call upload_video, request_review, list_content, approve_content and deliver_asset by name, no glue code required.
# Pair Lumiqa with Claude Code or Claude Desktop claude mcp add lumiqa https://lumiqa.io/mcp/<slug> \ --header "Authorization: Bearer lk_live_…" # Verify the tools registered claude mcp tools lumiqa # → list_content, get_content, upload_video, request_review, # approve_content, request_changes, deliver_asset, … (21 in total)
- 21 MCP tools cover the entire upload → review → approve → deliver loop
- From core actions (upload, review, approve, deliver) to vision AI, generation, distribution and workspace memory
- Workspace keys are scoped: a single
lk_live_sees only its own workspace - Free Developer tier ships with the full tool set unlocked from day one
.mcp.json in the repo, not the global Claude config. The agent gets the tool only when it's working in that project — fewer surprises.