This MCP server implementation provides tools and resources for managing a coding project's todo list. Developed by Dennis Martis, it offers functionality to view, add, update, and delete todo items, with features like priority setting, tagging, and project assignment. The server uses FastMCP and Pydantic for efficient data handling and includes prompts for summarizing todos and suggesting which tasks to tackle next. It's designed for use cases requiring AI-assisted project management and task prioritization in software development contexts.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Adds a new todo item to the list. Arguments: title (string, required), description (string, required), project (string, optional), priority (integer from 1 to 5, optional, default: 1), tags (list of strings, optional)
Updates the status of an existing todo item. Arguments: id (string, required), status (string, required, options: pending/in_progress/completed)
Deletes a todo item from the list. Arguments: id (string, required)
Updates the details of an existing todo item. Arguments: id (string, required), title (string, optional), description (string, optional), project (string, optional), priority (integer from 1 to 5, optional), tags (list of strings, optional)