Sprout MCP Server

Model-tiered content pipeline — cheap models seed, expensive models verify

Local serverstdio

What is the Sprout MCP MCP server?

Sprout MCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Model-tiered content pipeline — cheap models seed, expensive models verify.

What you get

Sprout routes tasks to the right model tier automatically. Haiku drafts, Sonnet fact-checks, Opus verifies. Every chunk tracks provenance, confidence, and cost.

What the assistant can call

Once Sprout MCP is connected, these are the calls the assistant has available:

  • submit_chunk — Store content with provenance (model, task type, sources)
  • get_review_queue — List chunks needing review, filtered by confidence/project
  • mark_reviewed — Promote (seed→watered→sprouted) or reject chunks
  • recommend_model — Get model recommendation for a task type
  • get_stats — Dashboard of chunk counts, confidence levels, token usage
  • export_chunks — Export verified chunks as JSON
  • opus_test — Generate structured review summary for batch verification
  • schedule_task — Schedule tasks to run at a specific time or delay
  • list_scheduled — View pending scheduled tasks
  • cancel_scheduled — Cancel a pending scheduled task
  • configure_routing — Add/update routing rules at runtime
  • get_cost_report — Estimated spend per model with real pricing

Configuration and credentials

You will need one environment variable: SPROUT_DB_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Installation goes through your MCP client rather than a global install: point it at sprout-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

This sits in the planning and project tracking group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Sprout MCP's toolset — submit_chunk, get_review_queue, mark_reviewed and 10 more — is a fair guide to whether it matches your workflow. It is maintained by mepsopti; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Sprout MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Sprout MCP.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the sprout mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
submit_chunkStore content with provenance (model, task type, sources)
get_review_queueList chunks needing review, filtered by confidence/project
mark_reviewedPromote (seed→watered→sprouted) or reject chunks
recommend_modelGet model recommendation for a task type
get_statsDashboard of chunk counts, confidence levels, token usage
export_chunksExport verified chunks as JSON
opus_testGenerate structured review summary for batch verification
schedule_taskSchedule tasks to run at a specific time or delay
list_scheduledView pending scheduled tasks
cancel_scheduledCancel a pending scheduled task
configure_routingAdd/update routing rules at runtime
get_cost_reportEstimated spend per model with real pricing
retry_on_errorTrack failed attempts with backoff guidance

How to install the Sprout MCP MCP server

{
  "mcpServers": {
    "sprout": {
      "command": "uvx",
      "args": ["sprout-mcp"],
      "env": {
        "SPROUT_DB_PATH": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SPROUT_DB_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Sprout MCP to submit chunk.
  • Use Sprout MCP to get review queue.
  • Use Sprout MCP to mark reviewed.

Frequently asked questions

It connects Sprout MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (submit_chunk, get_review_queue, mark_reviewed, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Sprout MCP directly.