Coding Todo Server
Uses Python for implementation and requires Python packages to be installed via pip. The server provides todo list management functionality including viewing, adding, updating, and deleting todo items.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Coding Todo Serveradd a todo to implement user authentication with high priority"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Coding Todo Server
This MCP server provides tools and resources for managing a coding project's todo list.
Overview
This server allows you to:
View the current todo list
View details of specific todo items
Add new todo items
Update the status of todo items
Delete todo items
Update todo item details
Related MCP server: Todo Markdown MCP Server
Resources
todo://list: Provides a list of all todo items with their status, title, priority and tags.todo://item/{todo_id}: Provides detailed information about a specific todo item, including status, priority, creation date, project, tags, and description.
Tools
add_todo: Adds a new todo item to the list.Arguments:
title: Title of the todo item (required)description: Detailed description of the todo item (required)project: Project name (optional)priority: Priority from 1 (lowest) to 5 (highest) (optional, default: 1)tags: List of tags related to the todo (optional)
update_todo_status: Updates the status of an existing todo item.Arguments:
id: The ID of the todo item to update (required)status: New status (pending/in_progress/completed) (required)
delete_todo: Deletes a todo item from the list.Arguments:
id: The ID of the todo item to delete (required)
update_todo: Updates the details of an existing todo item.Arguments:
id: The ID of the todo item to update (required)title: New title (optional)description: New description (optional)project: New project name (optional)priority: New priority from 1 (lowest) to 5 (highest) (optional)tags: New list of tags (optional)
Installation
Before running the server, you need to install the required Python packages. You can do this using pip:
pip install -r requirements.txtUsage
To run the server, execute the coding_todo.py script.
python coding_todo.pyThis will start the MCP server, making its tools and resources available to MCP clients.
This server cannot be deployed
Maintenance
Related MCP Connectors
Create, list, and complete todo items through MCP.
- mcpOAuthnet.todoist
Official Todoist MCP server for AI assistants to manage tasks, projects, and workflows.
A MCP server built for developers enabling Git based project management with project and personal…
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that provides tools for managing todo items, including creation, updating, completion, deletion, searching, and summarizing tasks.7 npm46MIT
- AlicenseAqualityDmaintenanceAn MCP server that allows AI assistants to manage todo lists stored in a simple markdown file, supporting creation, reading, updating, and deletion of todo items with persistent IDs.56 npm6MIT
- AlicenseAqualityDmaintenanceAn unofficial MCP server that enables AI agents to create and list tasks in Todoist using natural language. It supports task details such as due dates, priorities, and labels, while allowing for project-based filtering.3MIT
- FlicenseNot gradedqualityDmaintenanceThis MCP server provides tools to manage a todo list with CRUD operations, enabling listing, creating, updating, and deleting todos.-