mytinytodo-mcp
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., "@mytinytodo-mcpList my todo lists"
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.
mytinytodo-mcp
MCP server for myTinyTodo. It talks to a running myTinyTodo instance over its JSON HTTP API so MCP clients can list, create, edit, and complete tasks.
Requirements
Python 3.10+
A myTinyTodo v1.8+ instance reachable over HTTP
Related MCP server: tasks-mcp
Install
uv syncFor tests:
uv sync --extra dev
uv run pytestConfiguration
Variable | Required | Description |
| Yes | Base URL, e.g. |
| No | Password when the instance is protected |
Auth uses the mtt-token cookie plus the MTT-Token header (required by myTinyTodo). The client bootstraps these automatically.
Run
export MYTINYTODO_URL=http://localhost:8000
uv run python -m mytinytodo_mcpOr the console script:
uv run mytinytodo-mcpMCP client config
Claude Desktop / Cursor example:
{
"mcpServers": {
"mytinytodo": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/mytinytodo-mcp-server",
"python",
"-m",
"mytinytodo_mcp"
],
"env": {
"MYTINYTODO_URL": "http://localhost:8000"
}
}
}
}Tools
Lists: list_lists, create_list, rename_list, delete_list, clear_completed
Tasks: list_tasks, create_task, edit_task, complete_task, set_task_note, set_task_priority, move_task, delete_task
Tags: tag_cloud, suggest_tags
Example prompts
List my todo lists
Show open tasks on Todo
Add “Buy milk” to list 1
Mark task 42 complete
Notes
List id
-1is the synthetic All tasks view.Simple
create_taskcalls use myTinyTodo smart syntax (±prio,#tag,@duedate).move_taskneeds bothfrom_listandto_list.
This server cannot be deployed
Maintenance
Related MCP Connectors
Create, list, and complete todo items through MCP.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
- mcpOAuthnet.todoist
Official Todoist MCP server for AI assistants to manage tasks, projects, and workflows.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceAn MCP server to read and manage your Microsoft To Do tasks through the Microsoft Graph To Do API.MIT
- FlicenseNot gradedqualityBmaintenanceA lightweight task management MCP server that enables CRUD operations on tasks stored in a single JSON file, including listing, creating, updating progress, and setting priorities.215 npm-
- AlicenseBqualityCmaintenanceA basic MCP server for managing a todo list stored in a local JSON file, enabling task creation, completion, listing, and daily summary generation.21 npmMIT
- FlicenseNot gradedqualityCmaintenanceA simple MCP server that turns a JSON file into a todo list, letting users add, list, complete, delete, and clear tasks through natural language in MCP-compatible clients.-