- Home
- MCP servers
- MCP Todo Server
MCP Todo Server
- typescript
1
GitHub Stars
typescript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"havfar-todo-mcp-server": {
"command": "bash",
"args": [
"/absolute/path/to/mcp-todo/mcp/run-todo.sh"
],
"env": {
"DATABASE_URL": "file:/absolute/path/to/mcp-todo/data/todos.db"
}
}
}
}You run a lightweight MCP server that manages a todo list using a local SQLite database. It exposes tools to create, read, update, delete, and search todos, making it easy for client apps like Claude Desktop to interact with your data in a structured way.
How to use
To use the Mongo (MCP) Todo Server with an MCP client, run the server locally and connect your client to the configured MCP endpoint. You will access a set of tools that let you list all todos, add new ones, toggle their completion state, delete items by ID, and search by title. The server stores data in SQLite via Prisma for reliable concurrent access, so your list stays consistent even as multiple clients interact.
How to install
Prerequisites: ensure you have Node.js installed on your system. You will also need access to a terminal and permission to write to a project directory.
# Step 1: Install dependencies
npm install
# Step 2: Create environment file for local database
# This will set the path to your SQLite database
# Use an absolute or repository-relative path as appropriate
# Example shown below:
DATABASE_URL="file:./dev.db"
Step 3: Initialize the database schema and migrations for Prisma.
npx prisma migrate dev
Step 4: Start the MCP server using the provided startup script. You will run a shell command that launches the server in the correct context.
npm run mcp:todo
Additional setup for Claude Desktop client
Configure Claude Desktop to load the MCP server by adding the following to your Claude Desktop configuration. This creates a local stdio MCP server named todo that runs the startup script and sets the database path.
{
"mcpServers": {
"todo": {
"command": "bash",
"args": ["/absolute/path/to/mcp-todo/mcp/run-todo.sh"],
"env": {
"DATABASE_URL": "file:/absolute/path/to/mcp-todo/data/todos.db"
}
}
}
}
Available tools
list_todos
Returns all todos sorted by creation date (newest first).
add_todo
Creates a new todo item with a required title and an optional due date.
toggle_todo
Toggles or sets the completion status of a todo by its ID.
delete_todo
Deletes a todo by its ID.
search_todos
Searches todos by a title substring.