Todo MCP Server
Allows management of todo items stored in a SQLite database, providing tools to add, list, and remove todos.
Click on "Install 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., "@Todo MCP Serveradd a todo: buy groceries"
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.
Todo MCP Server
A simple MCP (Model Context Protocol) server for managing todo items with SQLite database storage.
Features
Add new todo items
List all todo items
Remove todo items by ID
Setup
Install dependencies:
npm installConfigure database location (optional):
Open
src/database.tsand modify theDB_LOCATIONvariable to your preferred location:// Examples: // - Windows: "C:/todos" // - macOS: join(homedir(), "todos") // - Linux: "/home/username/todos" or join(homedir(), "todos") // - Current directory: join(process.cwd(), "data") const DB_LOCATION = "C:/todos";Build the project:
npm run build
Database
The application uses SQLite for data storage. By default, the database file is created at C:/todos/todos.db. You can change this location by modifying the DB_LOCATION variable in src/database.ts.
The database and its directory will be automatically created if they don't exist.
Available Tools
add-todo
Adds a new todo item to the list.
Parameters:
text(string): The text content of the todo item
Example:
add-todo(text: "Buy groceries")get-todos
Lists all todo items.
Example:
get-todos()remove-todo
Removes a todo item by its ID.
Parameters:
id(number): The ID of the todo item to remove
Example:
remove-todo(id: 1)Development
This project is built with:
TypeScript
better-sqlite3 for database operations
MCP SDK for the server implementation
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leonvanzyl/todo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server