todo-mcp-server
If you are the rightful owner of todo-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A simple MCP (Model Context Protocol) server for managing todo items with SQLite database storage.
The Todo MCP Server is a lightweight server application designed to manage todo items using the Model Context Protocol (MCP). It leverages SQLite for data storage, ensuring a simple and efficient way to handle todo lists. The server provides basic functionalities such as adding, listing, and removing todo items. It is built using TypeScript and utilizes the better-sqlite3 library for database operations. The server is designed to be easily configurable, allowing users to specify the database location according to their preferences. The project setup involves installing necessary dependencies, configuring the database location, and building the project. The server is ideal for users looking for a straightforward solution to manage todo items with minimal setup and configuration.
Features
- Add new todo items
- List all todo items
- Remove todo items by ID
Tools
add-todo
Adds a new todo item to the list. Parameters: text (string): The text content of the todo item.
get-todos
Lists all todo items.
remove-todo
Removes a todo item by its ID. Parameters: id (number): The ID of the todo item to remove.