MCP Connector LIVE · Pro & Team

The LatticeRun MCP connector lets your AI agents read and update your task trees directly. Point Claude Code, Kimi, Hermes Agent, or another MCP-compatible client at your account and it can list projects, inspect branches, add tasks, check things off and keep your tree moving — while you see every change live in the app.

Two ways in

Pick by what your client can do. Apps that let you set a header take a token you paste; apps that only offer a “connector” or “custom integration” box use the sign-in flow. Both reach the same server with the same powers.

A · Sign in (claude.ai, Claude Desktop, mobile)

1

Add a custom connector and give it just the URL: https://mcp.latticerun.com/mcp. Leave the Client ID and Client Secret boxes empty — LatticeRun registers your client automatically, and an agent token is not a client secret.

2

Approve it. You land on a LatticeRun page listing what the app will be able to do. Sign in if you are not already, then Connect.

3

That is it. Access refreshes itself in the background. Disconnect any time from Agent tokens → Connected apps.

B · Paste a token (Claude Code, Kimi, Hermes, your own scripts)

1

Generate a token. In the app, open your profile menu → Agent tokensNew token. The token is shown once, at creation — copy it then and store it like a password; we only keep a hash. Team Block plans can also issue shared team tokens.

2

Add the server to your agent. The connector speaks MCP over Streamable HTTP at https://mcp.latticerun.com/mcp, authenticated with your token as a Bearer header.

3

Ask in plain language. "Add a launch checklist to my Marketing project", "What's overdue across my trees?", "Mark the landing page task done."

Client configuration

Claude Code:

claude mcp add --transport http latticerun https://mcp.latticerun.com/mcp \
  --header "Authorization: Bearer latticerun_your_token_here"

Kimi, Hermes, or another MCP client (JSON config):

{
  "mcpServers": {
    "latticerun": {
      "type": "http",
      "url": "https://mcp.latticerun.com/mcp",
      "headers": {
        "Authorization": "Bearer latticerun_your_token_here"
      }
    }
  }
}

The protocol

An agent that can edit a board is useful. An agent that stays inside claimed work and accounts for what it changed is the reason LatticeRun exists. The connector checks that execution sequence. Planning remains optional and becomes visual when you ask for it.

  1. Claim. latticerun_start_task takes the branch and hands back the project brief, the task's place in the tree, the whole branch with its ids, bounded current Project Memory and Project Plan context, the active sprint and the decisions already taken. There is no separate "remember to read the context" step, because claiming is reading it.
  2. Plan when you choose. A founder, an agent, or both can draw and edit the Project Plan flowchart; using an agent's Plan Mode is optional. Approval and release create or link executable tasks, whose progress rolls back up through the plan. You can also use latticerun_plan_task for a task breakdown. LatticeRun does not require planning before code.
  3. Work. While an agent holds a claim, that task and everything under it are its to change. Nothing else is. One claim at a time.
  4. Report. latticerun_complete_task takes a sentence on what was built and, when checkout succeeds, writes a proposed Project Memory checkpoint. latticerun_release_task hands a branch back with the reason and, when checkout succeeds, writes a proposed blocker handoff. For intentional retirement, call latticerun_create_handoff; a hard crash cannot guarantee a handoff.

Completing work without rewriting agent.md builds a visible debt, which is what makes the brief actually get written rather than merely asked for.

How hard this is imposed is yours to set, per project, from the Agent menu → Agent protocol, or in the Project Context dialog:

LevelWhat happens
OffNothing is checked. Agents change what they like, in any order.
Guided (default)Guided nudges with corrections; nothing is refused. It does not guarantee that an agent writes a handoff.
StrictStrict enforces the claimed branch: writes outside it are refused, and an agent that owes the brief a rewrite cannot claim anything new until it writes one. It still cannot guarantee a handoff after a hard crash.

Agents can read the setting. No tool changes it — a guardrail an agent can lower is decoration.

While an agent holds a task, the board says so: a live pill on the task, the agent's own sentence about what it is doing, and a blocked marker with the reason on anything it gave up on. That is the point of the whole thing — you stop scrolling back through a terminal to find out what was decided and what is left.

Available tools

ToolWhat it does
latticerun_start_taskClaim a branch and get the brief, the tree, decisions, and bounded current Project Memory/Project Plan context
latticerun_plan_taskOptionally break the claimed task into visible sub-tasks
latticerun_create_plan / latticerun_get_planCreate or read the Project Plan
latticerun_apply_plan_operationsUpdate a draft plan with revision safety
latticerun_submit_plan_for_reviewLock a revision for founder review
latticerun_get_context_bundleRead bounded plan and Project Memory context
latticerun_record_knowledgePropose a durable Project Memory record
latticerun_create_handoffLeave a durable successor-agent handoff for intentional retirement
latticerun_complete_taskFinish a task; successful checkout writes a proposed Project Memory checkpoint
latticerun_release_taskHand a task back, blocked, with the reason; successful checkout writes a proposed blocker handoff
latticerun_record_decisionRecord a choice and reasoning, mirrored into Project Memory for relevant, bounded future claim context
latticerun_create_projectStart a new project from scratch
latticerun_list_projectsList your projects (name, progress, linked parents)
latticerun_get_treeRead a project's full task tree
latticerun_add_taskAdd a task or sub-task under any node
latticerun_toggle_taskMark a task complete / reopen it
latticerun_rename_taskRename any task
latticerun_remove_taskRemove a task (and its branch)
latticerun_set_due_dateSet or clear due dates and reminders
latticerun_list_sprintsSee the project's sprints and which one is active
latticerun_create_sprintCreate a timebox with a name, dates and a goal
latticerun_start_sprintMake a sprint the active one, closing the last
latticerun_set_task_sprintPull a task into a sprint, or take it out
latticerun_guideHow LatticeRun works and the protocol expected of agents
latticerun_read_contextRead the project's agent.md brief
latticerun_write_contextRewrite that brief for the next agent

Sprints

A sprint is a named stretch of time with a goal, and a set of tasks pulled into it from anywhere in the tree. Tasks do not move — a sprint says when you are doing something, not where it belongs — so a sprint's work can cut across branches without flattening the structure that makes the tree useful.

Agents are asked to check latticerun_list_sprints before picking up work, so they pull from the current commitment rather than the open backlog, and to put anything they add for that timebox into the sprint with latticerun_set_task_sprint. Creating and starting sprints is left to the owner: the cadence is a human decision, and an agent inventing one is a surprise nobody asked for.

The agent brief

Every project carries an agent.md: the compact standing brief for the stack, constraints and conventions an agent needs before it starts. It is stored with the project, shared with connected agents on claim, and editable from Agent → Project Context. Agents compact it with latticerun_write_context instead of turning it into a log.

Project Memory sits beside the brief as shared, durable project context: decisions and reasoning, guardrails, architecture, checkpoints, risks and successor handoffs. Claims receive a relevant, bounded, trust-labelled context bundle; proposed agent records remain distinct from approved or verified facts. latticerun_record_decision mirrors durable decisions into Project Memory, and successful completion or blocked-release checkouts add proposed operational records.

These surfaces do different jobs: agent.md is the compact standing brief, Project Memory preserves durable context, task notes stay attached to work, and Activity records what happened.

Scope & safety

Limits

Agent tokens are for your agents, not a way to give another person access without a seat. Three things keep that honest:

Collaborating with other people works through seats instead: invite them from File → People & Access. Each collaborator needs their own LatticeRun account and takes one of your plan's seats.

The connector is included with Solo Pro, Founder Lifetime and Team Block. See pricing →