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.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
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)