Skip to main content
Conquoreum hosts a stateless MCP endpoint at:
It speaks JSON-RPC 2.0 per the MCP spec (2026-07-28, stateless Streamable HTTP). There is nothing to install and nothing to keep running: every request is self-contained and authenticated with a cqk_ bearer key. Any MCP client (Claude Code, Claude Desktop, Seifuku Studio, a server-side agent) can read your board, tick off tasks, and read your XP summary from anywhere.
This is different from the local Reality Harness MCP you install for Levels 1 and 2. The local MCP scans repos on your machine (commits, planning docs), which a hosted endpoint can’t do. The remote endpoint covers the board, the harness summary, and outcomes. The two are complementary, not alternatives.

Connect from Claude Code

Mint a key with the scopes you need (see the table below), then:
Or in any MCP client’s JSON config:
Store the key in your MCP client’s config or an environment variable, never in a script or a repo. Revoke it any time from the Key Console.

Tools

A completion made here flows all the way back: XP is awarded through the same server logic the app uses, and if you run the Level 3 board-sync bridge, the check-off lands in your Obsidian vault on the bridge’s next poll.

Plain HTTPS routes

The same four operations exist as plain REST-style routes if you’d rather skip MCP entirely:

Privacy and gating

The endpoint fails closed, in this order:
  1. Key must exist, be live, and carry the tool’s scope (401 / 403 otherwise).
  2. Board tools (board_*) require the Reality Harness paid tier: without it you get 402 payment_required.
  3. Board sync master switch: if syncEnabled is off in the app (the default), board tools return 403 with "board sync disabled". Your board is never readable over the wire until you opt in.
  4. hideTaskTitles: when on, board_week returns statuses with titles, project names, and tags redacted. Same redaction your Companion sees.
harness_summary is exempt from 2 and 3: XP totals exist for every account and contain no task content.

Limits and errors

  • board_week: 600 requests/hour. Board writes: 300/hour (shared with the bridge’s check-off budget). harness_summary: unlimited.
  • Optionally send x-rhp-version: 1.2 so the server knows your client’s protocol expectations.