README.md
Manage tasks and memos through natural language using a Workspace ID.
An MCP server that integrates with the mcp-todo app to manage tasks and memos through natural language. It allows users to list, create, update, and delete todos and notes using a Workspace ID.
Tools (4)
list_todosRetrieve a list of all todos and notes in the workspace.create_todoCreate a new task or memo in the workspace.update_todoUpdate an existing todo or note by its ID.delete_todoRemove a todo or note from the workspace using its ID.Environment Variables
WORKSPACE_IDrequiredThe unique identifier for the mcp-todo workspace.Configuration
claude_desktop_config.json
{
"mcpServers": {
"mcp-todo": {
"command": "npx",
"args": ["-y", "@moon-daeseung/mcp-todo"],
"env": {
"WORKSPACE_ID": "your-workspace-id-here"
}
}
}
}Try it
→Show me all the tasks currently in my todo list.
→Add a new memo saying 'Remember to review the project proposal by Friday'.
→Mark the task with ID 123 as completed.
→Delete the note about the grocery list from my workspace.