SQLite-backed Jira-like project tracker MCP server with hierarchy, dependencies, comments, templates, and activity logging.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Saga MCP.
tracker_initInitialize tracker and create first project
tracker_nextWhat to work on next, with the reason and what is blocked
tracker_dashboardFull project overview with natural language summary
project_createCreate a new project
project_listList projects with completion stats
project_updateUpdate project (archive to soft-delete)
Your coding agent loses the plan between sessions. You come back tomorrow and it has no idea which
of the five things you agreed on are done, which one is blocked on which, or why you rejected the
second approach โ because the plan lived in the context window, or in a TODO.md nobody updates.
saga-mcp gives the agent a real tracker instead: a SQLite file in your project holding projects, epics, tasks, subtasks, dependencies, comments, notes and decisions, exposed as 41 MCP tools. The agent writes to it as it works and reads it back when it returns. No accounts, no external service, no network calls โ the database is a file you own.
Add saga-mcp to your MCP client. The same block works for Claude Code (.mcp.json in your
project), Claude Desktop (claude_desktop_config.json), and any other MCP client:
Restart the client. DB_PATH is the only required setting; the file and its schema are created on
first use. Prefer a global install? npm install -g saga-mcp, then use saga-mcp as the command
instead of npx.
Tested on Node 20, 22 and 24, on Linux, macOS and Windows.
| Variable | Required | Description |
|---|---|---|
DB_PATH | Yes | Path to the .tracker.db SQLite file. Created on first use. |
SAGA_PROJECT | No | Scope every tool to one project, by id or name. Set this per repo when several repos share one database. |
SAGA_TOOLS | No | full (default) lists all 41 tools. core lists only the 13 an ordinary tracking session needs, saving ~4,300 tokens per session. See token cost. |
No API keys, no accounts, no external services.
You: "Set up tracking for the e-commerce API and plan out auth."
Tasks 2 and 3 come back blocked โ their dependencies aren't done. Finish task 1 and task 2 unblocks itself.
Next session, you: "Where were we?"
One recommendation with the reason. For the whole picture instead, tracker_dashboard({}) returns
stats, epics, blocked and overdue tasks, recent activity and notes, with a summary on top.
And when you would rather look than ask, saga-web puts the same database in a browser:
saga-web serves the same database in a browser, read and write{variable} substitution, editable in placetracker_dashboard hands an agent everything and leaves it to reason. tracker_next answers the
question:
One recommendation with the reason, the next unfinished subtask inside it, a couple of alternatives, and anything overdue or blocked. About a third the size of the dashboard.
The ordering rule worth knowing: continuing beats starting. A task already in progress outranks an untouched one that is overdue or higher priority, because abandoning work in flight just leaves two things unfinished โ the overdue work is named in the summary instead. Blocked tasks are never recommended, archived epics and removed tasks are skipped, and subtask dependencies decide which step comes next inside the chosen task.
When nothing is actionable it says what to unblock rather than returning an empty answer:
A deliberate order wins over a guess. task_list sorts by priority until someone arranges an
epic, and from then on it follows the arrangement:
Priority is a reasonable guess about what matters; a sequence someone wrote down is not a guess. An agent handed a plan should start at the beginning of it, not at whichever step happens to be marked critical.
Nothing changes for epics nobody has arranged โ those sort by priority exactly as before, and an
explicit sort_by is always obeyed literally.
Anything omitted from ordered_ids keeps its relative position at the end. sort_order runs
ascending โ lower sorts first โ and a task created after an arrangement has no place in it, so it
lands at the end rather than the front. In the web UI you can drag tasks into place inside an epic.
Task dependencies auto-block and auto-unblock:
Re-evaluation runs whenever a blocker's doneness changes in either direction, so reopening a finished blocker blocks its dependents again, and clearing the last dependency releases them. Circular dependencies are refused with the loop named, for tasks and subtasks alike โ anything in a cycle would be blocked forever. The web UI shows a banner at the top of a blocked task naming what it waits on, with a picker to add or remove dependencies.
Two guards for the ways an agent goes wrong on a long task.
A locked description. Agents sometimes rewrite a task's description to record progress, when
they meant to add a comment โ and the spec you agreed on is gone. Lock it and task_update refuses:
Everything else about the task stays editable โ the point is to protect the spec, not freeze the
task. The lock cannot be cleared as a side effect of an ordinary task_update; it takes a
deliberate task_lock_description call or the lock toggle in the web UI, and both are logged.
This is a guard against confusion, not an adversarial control: an agent that is told to unlock still can. It turns a silent overwrite into a visible, reversible decision.
Subtask order and dependencies. New subtasks are appended in order rather than all landing at
position 0, subtask_reorder sets the order in one call (or drag them in the UI), and a subtask
can wait on its siblings:
Reads carry depends_on and blocked, and the block is enforced on write: starting or
finishing a subtask whose prerequisites are unmet is refused, and so is completing a task whose
checklist is still open.
Factual signals from GitHub, npm, and our automated checks โ not a rating.
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/spranab-saga-mcp)<a href="https://allmcps.com/mcp/spranab-saga-mcp"><img src="https://allmcps.com/api/badge/spranab-saga-mcp?style=directory" alt="Saga MCP on AllMCPs" /></a>