Agent Todo
FreeNot checkedA Model Context Protocol server for AI agents to manage tasks and track progress across projects, with features like project isolation, search, and reporting.
About
A Model Context Protocol server for AI agents to manage tasks and track progress across projects, with features like project isolation, search, and reporting.
README
Now all editors have this feature so yep...
A Model Context Protocol server for AI agents to manage tasks and track progress across projects.
Features
- Create, update, and manage TODOs with detailed metadata
- Track progress, status, priority, and dependencies
- Explicit project isolation to prevent data mixup between workspaces
- Search, filter, and generate comprehensive reports
- Persistent JSON storage with complete project separation
Installation
Via npm (Recommended)
npm install -g agent-todo-mcp
From Source
git clone https://github.com/w04m1/agent-todo-mcp.git
cd agent-todo-mcp
npm install
npm run build
npm install -g .
Configuration
Add to your Claude Desktop/Cursor/VSCode/etc. config:
{
"mcpServers": {
"agent-todo": {
"command": "agent-todo-mcp"
}
}
}
How AI Models Use This Server
When AI models interact with this MCP server, they follow this workflow:
- Check existing projects with
list_projects - Create or switch to a project with
switch_project - Create and manage TODOs within that project workspace
Project Management
Project Naming Best Practices
When creating projects, use descriptive names that clearly identify the workspace:
- ✅
"my-react-app"- Good descriptive name - ✅
"backend-api-v2"- Clear project identifier - ✅
"research-ml-models"- Descriptive and specific - ❌
"project1"- Too generic - ❌
"temp"- Not descriptive
Project Isolation & Storage
Each project workspace is completely isolated. TODOs are stored in:
~/.agent-todos/
├── my-react-app/todos.json # Project: "my-react-app"
├── backend-api-v2/todos.json # Project: "backend-api-v2"
├── research-ml-models/todos.json # Project: "research-ml-models"
└── default-workspace/todos.json # Default fallback project
Architecture
- Complete Isolation: Each project has its own TODO storage
- Explicit Management: Projects are created explicitly via
switch_projecttool - Persistent Storage: All data persists in
~/.agent-todos/{projectId}/ - ⚠️ No Deletion: Projects cannot be deleted through the API (only individual TODOs can be deleted)
Available Tools
Project Management
list_projects- List all available project workspacesswitch_project- Create new project or switch between existing onesget_project_info- Show current project details
Core Management
create_todo- Create new tasksupdate_todo- Update existing tasksdelete_todo- Remove taskslist_todos- List and filter tasksget_todo- Get detailed task info
Search & Analytics
search_todos- Search across all tasksgenerate_report- Create progress reportsget_stats- Quick statistics
TODO Structure
interface Todo {
id: string;
title: string;
description?: string;
status: "pending" | "in-progress" | "completed" | "blocked";
priority: "low" | "medium" | "high" | "urgent";
progress: number; // 0-100
tags: string[];
dependencies: string[]; // Other TODO IDs
dueDate?: string;
metadata: Record<string, any>;
createdAt: string;
updatedAt: string;
}
Development
npm run dev # Development mode
npm run build # Build project
npm start # Run built server
License
MIT
Built with AI for AI 🤡
Install Agent Todo in Claude Desktop, Claude Code & Cursor
unyly install agent-todo-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add agent-todo-mcp -- npx -y agent-todo-mcpFAQ
Is Agent Todo MCP free?
Yes, Agent Todo MCP is free — one-click install via Unyly at no cost.
Does Agent Todo need an API key?
No, Agent Todo runs without API keys or environment variables.
Is Agent Todo hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Agent Todo in Claude Desktop, Claude Code or Cursor?
Open Agent Todo on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Notion
Read and write pages in your workspace
by NotionLinear
Issues, cycles, triage — from Claude
by LinearGoogle Drive
Search and read your Drive files
by Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
by mindsdbCompare Agent Todo with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All productivity MCPs
