#Threadron MCP – shared task state across agents across machines

1 messages Β· Page 1 of 1 (latest)

sonic ledge
#

Been experimenting with multi-agent workflows (OpenClaw on personal machine + Claude Code on work laptop) and kept hitting the same issue:

everything works… until you switch machines or try to plug systems together for managikng yoru tasks across systems. So I built a small system (Threadron) and wired it up via MCP.

What it does:

  • shared work items (goal, current state, next step, blockers)
  • append-only timeline (who did what)
  • artifacts (PRs, plans, outputs)
  • simple claim system so agents don’t step on each other

Now OpenClaw can:

  • tell you about your task status across a multi agent multi system setup
  • pick up work started by another agent
  • see what already happened
  • continue without re-deriving context

Setup is just MCP:

openclaw mcp set threadron '{"url":"https://threadron.com/mcp","headers":{"Authorization":"Bearer YOUR_API_KEY"}}'

Run it on your own at https://github.com/jerednel/threadron
Flashy site at https://threadron.com

mossy storm
#

Cool! This would be to collaborate between openclaw agents?

sonic ledge
#

So my use case is I use Claude code at work and Openclaw at home across multiple agents and machines.

With this they both have access to a shared task layer with the full history of each task so there is no catching them up on what I am working on. They all have the full picture.