A
licenseB
qualityC
maintenanceA basic MCP server for managing a todo list stored in a local JSON file, enabling task creation, completion, listing, and daily summary generation.
2
7 npm
MIT
No user-submitted related servers found.
Scored across 4 tools
Each tool has a distinct purpose: add, list, complete, and delete tasks. There is no ambiguity or overlap between them.
All tools follow the consistent verb_noun pattern (add_task, list_tasks, complete_task, delete_task), making the naming predictable and clear.
With just 4 tools, the server is tightly scoped to the core operations of a todo list, and each tool is necessary and sufficient for basic task management.
The tools cover the full lifecycle of a todo item: create (add_task), read (list_tasks), update (complete_task), and delete (delete_task). No essential operations are missing for a simple todo list.