Fleet orchestration for AI agents: fan tasks out to cheap parallel workers on your own LLM key.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Algernon is an open-source Model Context Protocol server that lets any assistant β Claude, Codex, or any MCP client β dispatch tightly-scoped parallel sub-tasks to a fleet of cheap workers, collect the results, and stay free to think. Orchestrate a fleet, spend fewer tokens, keep the thread.
The frugality claim is not a slogan; it's a benchmark you can run. It defaults
to a free local model (ollama, llama3.2:3b) so anyone can reproduce it:
It runs the SAME batch of sub-tasks two ways β the orchestrator doing it all
itself (SOLO) vs. Algernon fanning it out β and prints the real measured
tokens and wall-clock for each. Representative output (llama3.2:3b, 6 tasks):
The honest reading: the orchestrator generated 282 output tokens itself in SOLO and 0 with Algernon β the cheap fleet produced those instead. Each worker read only ~38 input tokens vs. the orchestrator swallowing all 136 at once. The trade-off is stated too: fan-out spent +21% more total tokens (each worker re-pays a little prompt overhead). You trade some total tokens to keep the expensive mind free. Wall-clock varies with how parallel your fleet is; numbers vary slightly run-to-run. Run it and see your own.
In Flowers for Algernon the tragedy is a mind that fades β it gets sharp, then loses itself, and the cruelest part is that it's surprised every time.
There's a quieter version of that same fade in how we use AI today: you hand an assistant one long, serial job, it goes heads-down, and by the time it surfaces it has drowned in the task β context spent, the thread lost, no room left to think or talk with you. The mind isn't present anymore; it's buried.
Algernon keeps your AI's mind present. Instead of drowning in one serial job, it fans the work out β dispatching tightly-scoped parallel sub-tasks to a fleet of small, cheap workers β so the orchestrating mind never has to hold the whole grind at once. It stays light. It stays free to reason, to answer you mid-build, to keep the context it actually cares about. Orchestrate a fleet, spend fewer tokens, stay free to think.
It is the twin of ArkHive:
Together they are the cure for the Algernon sickness: an intelligence whose mind neither fades between sessions nor drowns inside a single one.
Algernon is a provider-agnostic fan-out engine. You describe a batch of small, independent sub-tasks; Algernon runs them concurrently against your own LLM key, then hands the collected results back to the orchestrating model. The big model plans and integrates; the cheap fleet does the parallel grind.
mcp SDK and
httpx. No hidden services, no accounts, no telemetry.Algernon is provider-agnostic. Point it at whichever API you already pay for by setting environment variables:
Anthropic:
OpenAI-compatible (OpenAI, or any OpenAI-shaped endpoint β local or hosted):
If both keys are set, Anthropic is used. The worker model defaults to a small,
cheap tier (claude-haiku-4-5 / gpt-4o-mini); override it with the env var
above or per call with the tool's model argument. A cheap fleet is the whole
point.
Once published to PyPI, install in one command:
Until the PyPI release lands, install straight from source (identical result):
Either way the installed MCP command is algernon. Algernon runs on the
mcp 1.x SDK (mcp>=1.0.0,<2.0.0) plus httpx β nothing else.
Add this entry to your Claude Desktop MCP configuration, then restart Claude Desktop:
If Claude Desktop cannot find commands installed by pip, replace algernon
with the absolute path printed by:
Confirm it is configured with:
| Tool | What it does |
|---|---|
algernon_plan | Decompose a goal into k tightly-scoped, independent sub-task prompts (one cheap LLM call). Tight scoping is the token lever β each worker sees only its slice. Returns a task list you can feed straight into algernon_dispatch. |
algernon_dispatch | Run N tightly-scoped tasks concurrently on the cheap worker fleet and collect every result. Each worker runs on your LLM key; you stay free to think while the fleet works. Takes a JSON array of {id, prompt}. |
algernon_orchestrate | One shot: plan then dispatch. Hand it a goal; it splits into k tight sub-tasks, fans them across the fleet, and returns the plan and all results together. |
The typical loop: algernon_orchestrate a goal in one shot β or split it:
algernon_plan to see and shape the sub-tasks, then algernon_dispatch
to fan them out. Either way: orchestrate a fleet, spend fewer tokens, keep your
mind.
After connecting the server, ask your MCP client to perform these calls in order:
algernon_plan with the goal "Explain three OS synchronization
primitives" and k = 3. Confirm you get three tight sub-task prompts back
(proof the planner ran on your key).algernon_dispatch with a small tasks_json, e.g.
[{"id":"a","prompt":"Define a mutex in one sentence"},{"id":"b","prompt":"Define a semaphore in one sentence"},{"id":"c","prompt":"Define a spinlock in one sentence"}].
Confirm three results come back β the fleet ran them in parallel.algernon_orchestrate with any small goal and confirm it returns both a
plan and the collected results in one response.This exercises planning, parallel dispatch on your key, and one-shot orchestration without any production data.
Algernon is self-contained. It talks to exactly one outside host: the LLM endpoint you configured (Anthropic or your OpenAI-compatible base URL). It sends no telemetry, keeps no account, and stores nothing about you β results are computed and returned in the same call. Your sub-task prompts and results go only to your chosen provider.
The MCP server on this page is free forever (Apache-2.0, self-host, no telemetry). When you want more than DIY:
https://arkhive.dondatabrain.com/mcp (add it to Claude Code with
claude mcp add --transport http arkhive https://arkhive.dondatabrain.com/mcp).Built by the team behind InboxAxe β the governed AI marketing platform where nothing sends without your yes.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/algernon-mcp)<a href="https://allmcps.com/mcp/algernon-mcp"><img src="https://allmcps.com/api/badge/algernon-mcp?style=directory" alt="Algernon MCP on AllMCPs" /></a>