sprinty
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., "@sprintyCreate a new sprint for implementing user authentication"
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.
Sprinty
Disciplined sprint tracking for AI coding agents.
Sprinty is an MCP server that gives agents a structured way to plan, execute, verify, and close non-trivial coding work. It keeps the sprint record local, append-only, and tied to real git commits, so an agent cannot quietly lose track of work, invent ids, or mark items done without evidence.
Why Use Sprinty?
Without Sprinty, long agent sessions often drift:
work gets tracked in loose prose that is hard to resume;
tasks are marked done without a real commit or passing gate evidence;
follow-up context disappears after a restart;
humans cannot easily see what the agent is doing right now.
With Sprinty, the agent gets MCP tools for:
sprint, subsprint, and item tracking with server-minted ids;
dependency edges, blocked work, and cycle detection;
item gates that require passing evidence before completion;
git commit validation and per-item change maps;
notes and artifacts attached to the sprint record;
compact
overview,next, andsearchreads for agent token budgets;a local dashboard URL returned by
sprint_newandsprint_resume;strict
sprint_closechecks that refuse to close while work, coverage, or gates are missing.
Related MCP server: anchor-mcp
Installation
Sprinty is published as the npm package sprinty-mcp.
npx -y sprinty-mcpThe server is usually launched by an MCP client. Sprinty works with any MCP client that can run a local command.
Codex
Add Sprinty to ~/.codex/config.toml:
[mcp_servers.sprinty]
command = "npx"
args = ["-y", "sprinty-mcp"]Claude Code
claude mcp add sprinty -- npx -y sprinty-mcpThe repository also includes a Claude plugin manifest in clients/claude/.
Gemini CLI
From a repository checkout:
gemini extensions install ./clients/geminiThe Gemini extension uses clients/gemini/gemini-extension.json and clients/gemini/GEMINI.md.
Codex Plugin From A Checkout
For local plugin development from this repository:
codex plugin marketplace add .
codex plugin add sprinty@sprinty-localThe installable plugin bundle lives in plugins/sprinty/.
Quick Start
Sprinty never guesses the repository from the MCP server process cwd. Start a sprint with explicit paths:
{
"goal": "Ship the dashboard lifecycle change",
"git_dir": "/absolute/path/to/repo",
"data_dir": "/absolute/path/to/repo/.sprinty",
"context_notes": ["optional notes for the agent"]
}git_diris where Sprinty checks commits, runs gates, reads coverage, and builds change maps.data_diris where Sprinty stores thecurrentpointer and JSONL ledgers.Use a worktree-scoped, gitignored
data_dir, such as<git_dir>/.sprinty.
After a restart, inspect and resume the same sprint:
sprint_list({ data_dir })
sprint_resume({ git_dir, data_dir })You can also pre-bind a read-only MCP process with both environment variables:
SPRINTY_GIT_DIR=/absolute/path/to/repo
SPRINTY_DATA_DIR=/absolute/path/to/repo/.sprintyBoth SPRINTY_GIT_DIR and SPRINTY_DATA_DIR are required together.
Basic Workflow
sprint_new({ goal, git_dir, data_dir, context_notes? })
-> returns dashboard.url
overview({})
subsprint_new({ description, goals, gates, dependencies? })
item_add({ subsprint, title, description, code_locations, gates, dependencies?, high_priority? })
next({})
item_done({ id, commit_id, gate_results, changelog })
changelog({})
sprint_close({ coverage: { path, format: "lcov", command? } })Use item_split when an item is too large and item_deprecate when an item is intentionally
dropped. Use sprint_detach before switching one MCP process to a different sprint.
Dashboard
sprint_new and sprint_resume automatically start a read-only local dashboard and return:
{
"dashboard": {
"running": true,
"url": "http://127.0.0.1:60767",
"port": 60767
}
}Open the URL in a browser to watch progress while the agent works. The dashboard shows sprint status, items, blocked work, gates, artifacts, changelog entries, change maps, and the ledger.
Dashboard tools:
dashboard_inforeturns the current dashboard URL and port without restarting it.dashboard_restartrestarts the dashboard server and returns the new URL and port.sprint_close,sprint_archive, andsprint_detachstop the dashboard.
Available Tools
Sprint Tools
Tool | What it does |
| Start a sprint with explicit |
| Reattach to an existing sprint after an MCP restart; returns dashboard info. |
| List ledgers in a |
| Clear this MCP process binding and stop the dashboard. |
| Re-run gates, require coverage evidence, and close only when all work is resolved. |
| Archive an active sprint with a recovery reason. |
| Compact sprint summary for orientation. |
| Compact active work window with available and blocked items. |
| Regex search over the immutable sprint ledger. |
| Render the sprint changelog and change-map summary as Markdown. |
Work Tools
Tool | What it does |
| Create a feature-sized unit of work. |
| List subsprints with compact item counts. |
| Read one subsprint and its item rows. |
| Create one atomic, gated item. |
| Read full item detail. |
| Update item metadata, notes, priority, or dependency edges. |
| Complete an item with a real commit, passing gate evidence, and changelog line. |
| Resolve an oversized item by creating a new subsprint. |
| Drop an item with an explicit reason. |
Notes And Artifacts
Tool | What it does |
| Attach a note to an item. |
| List notes for an item. |
| Read one note. |
| Update one note. |
| Attach a durable file path to the sprint. |
| List active artifacts. |
| Read one artifact record. |
| Update artifact metadata. |
Dashboard Tools
Tool | What it does |
| Report whether the dashboard is running and, if so, its URL and port. |
| Restart the dashboard and return the new URL and port. |
How Sprinty Stores Data
Sprinty writes one append-only JSONL ledger per sprint under data_dir. The ledger is local state;
keep it out of git unless you intentionally want to preserve it elsewhere. Sprinty projects that
ledger into compact read models for agents and into the dashboard for humans.
Completed items record the commit id, gate results, changelog entry, and Git-backed file change map.
sprint_close re-checks commits, re-runs executable gates, requires coverage evidence, and refuses
to close while any item is still open.
More Documentation
Development
npm install
npm test
npm run typecheck
npm run buildLicense
Apache-2.0 © Elie Bursztein
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ebursztein/sprinty'
If you have feedback or need assistance with the MCP directory API, please join our Discord server