A Model Context Protocol (MCP) server that provides functionality to create detailed workplans to implement a task or feature. These workplans are
A Model Context Protocol (MCP) server that provides functionality to create detailed workplans to implement a task or feature. These workplans are generated with a large, powerful model (such as gemini 2.5 pro or even the o3 deep research. The yellhorn mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 5 defined tools rather than through you.
Everything the assistant can do here goes through one of these:
curate_context — Analyzes the codebase and creates a .yellhorncontext file listing directories to be included in AI context. This tool helps optimize AI context bycreate_workplan — Creates a GitHub issue with a detailed workplan based on the title and detailed descriptionget_workplan — Retrieves the workplan content (GitHub issue body) associated with a workplanrevise_workplan — Updates an existing workplan based on revision instructions. The tool fetches the current workplan from the specified GitHub issue and uses AI tojudge_workplan — Triggers an asynchronous code judgement comparing two git refs (branches or commits) against a workplan described in a GitHub issue. Creates aThe server ships on PyPI as yellhorn-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
You will need 6 environment variables: GEMINI_API_KEY, REPO_PATH, YELLHORN_MCP_SEARCH, OPENAI_API_KEY, XAI_API_KEY, PYPI_API_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Yellhorn MCP's toolset — curate_context, create_workplan, get_workplan and 2 more — is a fair guide to whether it matches your workflow. It is maintained by msnidal; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Yellhorn MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| curate_context | Analyzes the codebase and creates a .yellhorncontext file listing directories to be included in AI context. This tool helps optimize AI context by understanding the task you want to accomplish and creating a whitelist of |
| create_workplan | Creates a GitHub issue with a detailed workplan based on the title and detailed description. |
| get_workplan | Retrieves the workplan content (GitHub issue body) associated with a workplan. |
| revise_workplan | Updates an existing workplan based on revision instructions. The tool fetches the current workplan from the specified GitHub issue and uses AI to revise it according to your instructions. |
| judge_workplan | Triggers an asynchronous code judgement comparing two git refs (branches or commits) against a workplan described in a GitHub issue. Creates a placeholder GitHub sub-issue immediately and then processes the AI judgement |
{
"mcpServers": {
"yellhorn": {
"command": "uvx",
"args": ["yellhorn-mcp"],
"env": {
"GEMINI_API_KEY": "your-value",
"REPO_PATH": "your-value",
"YELLHORN_MCP_SEARCH": "your-value",
"OPENAI_API_KEY": "your-value",
"XAI_API_KEY": "your-value",
"PYPI_API_TOKEN": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| GEMINI_API_KEY | Credential the server authenticates with. | Yes |
| REPO_PATH | Filesystem location the server is allowed to use. | Optional |
| YELLHORN_MCP_SEARCH | Configuration value read at startup. | Optional |
| OPENAI_API_KEY | Credential the server authenticates with. | Yes |
| XAI_API_KEY | Credential the server authenticates with. | Yes |
| PYPI_API_TOKEN | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.