Conductor

Conductor

Provides a persistent hierarchical task tree for LLM agents, enabling them to decompose work, track progress, record results, and handle failures outside the context window, with an optional web UI for monitoring and control.

Category
访问服务器

README

Conductor

A persistent, hierarchical task tree for LLM agents — built as an MCP server with an optional web UI for monitoring and control.

When Claude Code (or any MCP-capable agent) works on anything beyond a single session, it loses the plot. No memory of what it already tried, no structured way to decompose goals, no way to recover from failures without starting over. And when context fills up and gets compacted, it forgets earlier attempts and retries the same failed approaches.

Conductor gives the agent a task tree that lives outside the context window entirely. The agent decomposes work into sub-tasks, tracks progress in each, records results and structured state, and handles failures by abandoning dead ends with a reason. When it branches to an alternative approach, it can see exactly why the previous one failed — so it doesn't repeat the same mistake even if the original attempt has long since been compacted away.

How it works

The agent operates on a plan — a named project with a working directory. A plan contains a tree of tasks, where each task has:

  • A goal (what it's trying to do)
  • A status (pendingactivecompleted | abandoned)
  • A result (human-readable summary when done)
  • A state (structured JSON for passing data between tasks)
  • An abandon_reason (why this approach failed, visible to sibling alternatives)
  • Optional depends_on (blocks activation until dependencies complete)

Task IDs are tree addresses, not random identifiers. "1" is the root, "1.2" is the second child of root, "1.2.3" is the third child of "1.2". This makes the tree structure legible in every tool response without needing a separate tree-fetch.

At each turn, the agent sees only its immediate context: the current task, its parent, siblings, children, and tree-wide stats. This keeps each API call small regardless of how large the overall plan grows.

MCP tools

Tool Description
list_plans List active (or all) plans
create_plan Create a new plan with a name and working directory
open_plan Resume an existing plan; restores archived plans automatically
archive_plan Mark a completed plan as archived
create_task Create a child task under the current focus task
get_context Read current task + parent, siblings, children, and tree stats
update_task Record progress: result summary, structured state patch, notes
set_status Transition a task to active, completed, or abandoned
provision_tasks Bulk-create a list of child tasks in one call
synthesize Summarise direct children grouped by completion status

Web UI

An optional Next.js app connects to the same SQLite database and provides:

  • Live task tree — hierarchical view with status indicators, updates in real time via WebSocket
  • Detail pane — full task detail, state, result, notes, and inline editing
  • Activity feed — event log showing what the agent did and when
  • Transcript panel — full conversation history per session, with collapsible tool call inputs and results
  • Agent controls — start, pause, resume, cancel; inject messages mid-run via the prompt bar
  • AI plan generation — generate or modify a task tree with a single prompt

AI features (plan generation, task decomposition, agent execution) run through a Claude Code Channels session on your machine — using your claude.ai plan subscription rather than a separate API key.

Quickstart

MCP server (Claude Code)

git clone https://github.com/shannonbay/Conductor
cd Conductor
npm install
cd mcp && npm run build

Add to your Claude Code MCP config (~/.claude/claude_desktop_config.json or project .mcp.json):

{
  "mcpServers": {
    "conductor": {
      "command": "node",
      "args": ["/path/to/Conductor/mcp/dist/index.js"]
    }
  }
}

Or run without compiling using tsx (macOS/Linux):

{
  "mcpServers": {
    "conductor": {
      "command": "npx",
      "args": ["tsx", "/path/to/Conductor/mcp/src/index.ts"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "conductor": {
      "command": "cmd",
      "args": ["/c", "npx", "tsx", "C:/path/to/Conductor/mcp/src/index.ts"]
    }
  }
}

Web UI

The web UI uses Claude Code Channels for all AI features. You need Claude Code v2.1.80+ with a claude.ai login (Pro or Max plan).

1. Add both servers to your .mcp.json:

macOS / Linux:

{
  "mcpServers": {
    "conductor": {
      "command": "node",
      "args": ["/path/to/Conductor/mcp/dist/index.js"]
    },
    "conductor-channel": {
      "command": "npx",
      "args": ["tsx", "/path/to/Conductor/channel/src/server.ts"]
    }
  }
}

Windows: npx requires a cmd /c wrapper:

{
  "mcpServers": {
    "conductor": {
      "command": "node",
      "args": ["C:/path/to/Conductor/mcp/dist/index.js"]
    },
    "conductor-channel": {
      "command": "cmd",
      "args": ["/c", "npx", "tsx", "C:/path/to/Conductor/channel/src/server.ts"]
    }
  }
}

2. Start the web app:

cd web && npm run dev

3. Launch Claude Code with the channel enabled:

claude --dangerously-load-development-channels server:conductor-channel

Open http://localhost:3000. The settings gear (⚙) shows a green dot when Claude Code is connected. The web app, MCP server, and channel server all share the same database (~/.conductor/tasks.db).

Note: --dangerously-load-development-channels is required during the Channels research preview (Claude Code v2.1.80+). Custom channel plugins are not yet on the approved allowlist.

Database

Both the MCP server and web app write to ~/.conductor/tasks.db (SQLite, WAL mode). Override the path with the CONDUCTOR_DB environment variable — set it to :memory: in tests for an isolated in-memory database.

Project structure

Conductor/
  channel/           Claude Code channel server (MCP over stdio + HTTP :8789)
    src/server.ts    Entry point — MCP server + HTTP bridge
  mcp/               MCP server (stdio transport, no HTTP)
    src/
      index.ts       Entry point — registers tools and dispatches calls
      schema.ts      Zod schemas for all tool inputs
      db.ts          SQLite helpers (minimal, no migrations)
      session.ts     In-memory open-plan tracking
      context.ts     Builds the context view returned by every tool
      tools/         One file per tool handler
  web/               Next.js monitoring and control UI
    app/             App Router pages and API routes
    components/      React UI components
    lib/             DB layer, channel client, agent runner, WebSocket broadcaster, planning
    __tests__/       Vitest test suites
    server.ts        Custom HTTP + WebSocket server
  specs/             Original design specs

Running tests

# MCP server
cd mcp && npm test

# Web app
cd web && npm test

Both use Vitest with CONDUCTOR_DB=:memory: so tests are isolated and leave no files behind.

Configuration

Env var Default Description
CONDUCTOR_DB ~/.conductor/tasks.db Path to SQLite database; use :memory: for tests
CONDUCTOR_CHANNEL_URL http://127.0.0.1:8789 URL of the channel server (web app → channel)
CONDUCTOR_CHANNEL_PORT 8789 Port the channel server listens on
BRAVE_SEARCH_API_KEY Optional; enables web_search tool in agent runs

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选