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)