To Do List MCP
Related Servers
Alternatives to To Do List MCP
No user-submitted related servers found.
Related Servers
- FlicenseBqualityDmaintenanceEnables task management through natural language commands in English or Spanish. Supports creating, listing, updating, completing, and deleting tasks with local SQLite storage.7-
- FlicenseNot gradedqualityDmaintenanceEnables users to manage a personal todo list with CRUD operations, keyword search, and local SQLite storage. Designed for AI agent productivity tools.-
- AlicenseNot gradedqualityBmaintenanceEnables LLMs to manage tasks in a local SQLite database, with tools for creating, listing, updating, and deleting tasks.MIT
- FlicenseNot gradedqualityBmaintenanceEnables managing daily work logs with tools for adding, listing, updating status, deleting, and summarizing tasks, using SQLite for persistent storage.-
- AlicenseNot gradedqualityCmaintenanceEnables task management through natural language: create tasks, list and filter them, and update their status. It uses SQLite for persistence and supports both local stdio and remote SSE transports.7MIT
- FlicenseNot gradedqualityCmaintenanceEnables CRUD operations on a SQLite task database with filtering by status and priority.-
TDQS
Scored across 4 tools
task_add, task_update, task_complete, and task_get target reasonably distinct actions on a task. However, task_complete overlaps with task_update (completing is a specialized update), and the absence of descriptions leaves boundaries somewhat implicit.
All four tools follow a strict task_<verb> snake_case pattern with no deviations. The convention is predictable and immediately readable.
Four tools is a sensible, well-scoped surface for a simple to-do list server. It is on the lean side but each tool maps to a clear operation.
The set covers create, read, update, and complete, but lacks a list/query-all operation and a delete/remove operation. These are notable gaps for a to-do domain that will force agents to work around missing lifecycle steps.