Skip to main content
Glama
Averyy

codex-dobby-mcp

by Averyy

start_run

Launch a Dobby tool as a background task and receive a task ID. Combine with wait_run to get results when ready, avoiding client timeouts.

Instructions

Start a Dobby tool in the background and return immediately with a task id. Follow up with wait_run(task_id=...) to block on one run, or call start_run several times and then wait_run(task_ids=[...]) to be woken by whichever finishes first. get_run/list_runs remain available for a non-blocking peek. Recommended when your MCP client enforces short tools/call timeouts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolYes
filesNo
modelNo
agentsNoReview lenses to run. Only used for `review`, or for `start_run` when `tool` is `review`. Supported values: generalist, security, performance, architecture, correctness, ux, regression.
dangerNo
promptYes
repo_rootYesAbsolute path to the target git worktree. Always pass the caller's active repository root; Dobby deliberately has no implicit repo fallback.
extra_rootsNo
timeout_secondsNo
reasoning_effortNo
important_contextNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolYes
modelYes
stateYes
summaryYes
task_idYes
repo_rootYes
artifact_pathsYes
reasoning_effortYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully bears the transparency burden. It clearly states the tool returns immediately with a task id and runs in the background. It doesn't disclose cancellation, error handling, or resource limits, but the core async behavior is well communicated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise: two sentences plus a recommendation, all front-loaded with the core action. Every sentence adds value with no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (11 parameters, many optional) and presence of an output schema, the description explains the output (task id) and how to use it with siblings. It doesn't detail the output schema structure, but the core flow is covered. It adequately addresses the tool's role among 11 siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is low (18%), so the description should compensate. It mentions tool, prompt, repo_root as parameters implicitly but does not elaborate on all 11 parameters. The description adds context for usage but doesn't map to individual parameters beyond the overall flow.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the action: 'Start a Dobby tool in the background and return immediately with a task id.' It clearly distinguishes from sibling tools like wait_run, get_run, and list_runs by explaining the asynchronous behavior and follow-up patterns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use guidance (short timeouts), follow-up patterns (wait_run with single or multiple task_ids), and alternatives (get_run/list_runs for non-blocking peek). This gives the agent clear decision criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Averyy/codex-dobby-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server