sprout-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sprout-mcprecommend model for biography synthesis"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sprout MCP
Drop your Opus bill 80%. Model-tiered content pipeline for MCP — cheap models seed work, expensive models verify it.
Sprout routes tasks to the right model tier automatically. Haiku drafts, Sonnet fact-checks, Opus verifies. Every chunk tracks provenance, confidence, and cost.
Install
uvx sprout-mcpOr add to Claude Code's MCP config (~/.claude/settings.json):
{
"mcpServers": {
"sprout": {
"command": "uvx",
"args": ["sprout-mcp"]
}
}
}How It Works
Haiku (seed) → Sonnet (watered) → Opus (sprouted)
Draft Fact-check Verify
$0.005/M $0.015/M $0.075/MSeed — Haiku drafts content cheaply (summarization, extraction, first passes)
Water — Sonnet reviews and fact-checks the seeds
Sprout — Opus deep-verifies only what passed Sonnet's review
Instead of running everything through Opus at $75/M output tokens, most work stays at Haiku's $5/M. Only the final verification — typically 10-20% of total work — touches Opus.
Tools (13)
Tool | Description |
| Store content with provenance (model, task type, sources) |
| List chunks needing review, filtered by confidence/project |
| Promote (seed→watered→sprouted) or reject chunks |
| Get model recommendation for a task type |
| Dashboard of chunk counts, confidence levels, token usage |
| Export verified chunks as JSON |
| Generate structured review summary for batch verification |
| Schedule tasks to run at a specific time or delay |
| View pending scheduled tasks |
| Cancel a pending scheduled task |
| Add/update routing rules at runtime |
| Estimated spend per model with real pricing |
| Track failed attempts with backoff guidance |
Configuration
Environment Variables
Variable | Default | Description |
|
| SQLite database location |
| (none) | Path to JSON config file for custom routes and pricing |
|
| Max retry attempts before giving up |
|
| Exponential backoff base (seconds) |
Custom Config File
Create a JSON file and point SPROUT_CONFIG at it:
{
"routes": {
"code_review": { "tier": "sonnet", "reason": "Code analysis needs reasoning" },
"translation": { "tier": "haiku", "reason": "Straightforward language task" }
},
"pricing": {
"custom-model": 10.00
}
}Default Routing Table
Task Type | Tier | Why |
| haiku | Factual summarization |
| haiku | Historical summarization |
| haiku | Content summarization |
| haiku | Structural verification |
| haiku | General summarization |
| haiku | Structured extraction |
| sonnet | Cross-reference claims |
| sonnet | Code analysis |
| opus | Deep factual verification |
| opus | Domain expertise required |
| opus | Deep reasoning required |
Unknown task types default to haiku — start cheap, escalate if needed.
Example Workflow
You: Use recommend_model for "biography_synthesis"
Sprout: biography_synthesis → haiku-4.5 (Factual summarization)
You: Use submit_chunk to store the Haiku output
Sprout: Stored chunk abc12345 [seed] for person-001.biography
You: Use get_review_queue to see what needs fact-checking
Sprout: 1 chunk pending review
You: Use mark_reviewed to promote after Sonnet fact-checks it
Sprout: Chunk abc12345 → watered (verified by sonnet-4.6)
You: Use get_cost_report
Sprout: haiku-4.5: ~1,300 tokens (1 chunk) — $0.0065
Total: $0.0065Development
git clone https://github.com/mepsopti/sprout-mcp.git
cd sprout-mcp
uv sync --extra dev
uv run pytestSupport
If Sprout saves you money on your AI bill, consider buying me a coffee:
License
MIT
mcp-name: io.github.mepsopti/sprout-mcp
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/mepsopti/sprout-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server