
Claude待办事项
STDIO为AI编码助手提供持久化任务跟踪
为AI编码助手提供持久化任务跟踪
Add persistent task management to any AI coding assistant in Cursor, Windsurf, and other IDEs.
This MCP server replicates Claude Code's todo system, giving your AI assistant the ability to:
Without task management, AI assistants:
With this MCP server:
No installation required! Just add this to your MCP configuration:
{ "mcpServers": { "task-manager": { "command": "uvx", "args": ["claude-todo-emulator"] } } }
.cursor/mcp.json
in your project rootRestart your IDE and try: "Create a todo list for adding user authentication"
The system automatically downloads the package and sets up everything on first use!
Once configured, your AI assistant will automatically:
Create todos for complex tasks:
You: "Add dark mode support with user preferences"
AI: "I'll create a todo list for this multi-step feature:
- ✅ Add theme context and state management
- 🔄 Create dark mode CSS variables and styles
- ⏳ Build settings UI for theme switching
- ⏳ Add persistence to localStorage
- ⏳ Update existing components for theme support"
Track progress visually:
You: "What's the status on the authentication system?"
AI: "Current authentication tasks:
- ✅ Set up JWT middleware
- ✅ Create login/signup endpoints
- 🔄 Building user profile management (in progress)
- ⏳ Add password reset flow
- ⏳ Implement role-based permissions"
Maintain focus:
You: "Let's also add email notifications"
AI: "I'll add that to the todo list, but let me finish the current user profile task first to maintain focus."
TodoRead
{todos: Todo[]}
TodoWrite
{todos: Todo[]}
{success: boolean, count: number}
Todo Schema
{ id: string; content: string; status: "pending" | "in_progress" | "completed"; priority: "high" | "medium" | "low"; created_at: string; updated_at: string; metadata?: object; }
MIT License - see LICENSE file for details.