mcp-server-my-todo
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., "@mcp-server-my-todoAdd a todo to 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.
mcp-server-my-todo
A minimal MCP (Model Context Protocol) server for a personal todo list, backed by SQLite.
Tools
add_todo(task: str)— add a new todo itemlist_todos(include_done: bool = True)— list todos, optionally hiding completed onescomplete_todo(todo_id: int)— mark a todo as donedelete_todo(todo_id: int)— delete a todo
Related MCP server: Todo MCP Server
Run locally
uv sync
uv run main.pyThe server listens on http://0.0.0.0:8000/mcp using the streamable-http transport.
Env vars:
PORT— port to listen on (default8000)TODO_DB_PATH— path to the SQLite file (defaulttodo.db)
Point an MCP client at http://localhost:8000/mcp to try it, e.g. with the MCP inspector:
uv run mcp dev main.pyDeploy to Render
This repo includes a Dockerfile and a render.yaml blueprint that builds it and
provisions a web service plus a 1GB persistent disk mounted at /data (so the SQLite
file survives deploys/restarts — Render's regular filesystem is ephemeral, and disks
require a paid instance type, hence plan: starter).
Push this repo to GitHub.
In Render, create a new Blueprint and point it at the repo — it will read
render.yaml, build theDockerfile, and run the container.Once deployed, your MCP endpoint is
https://<your-service>.onrender.com/mcp.
You can also build/run the image locally to sanity-check it first:
docker build -t mcp-server-my-todo .
docker run --rm -p 8000:8000 mcp-server-my-todoIf you don't need persistence across deploys, you can skip the blueprint and just create a plain Render web service with the same build/start commands on the free tier — the todo list will just reset whenever the service redeploys or spins down.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that allows AI assistants to manage todo lists stored in a simple markdown file, supporting creation, reading, updating, and deletion of todo items with persistent IDs.5146MIT
- AlicenseNot gradedqualityDmaintenanceA simple MCP server for managing todo items with SQLite database storage, supporting add, list, and remove operations.136ISC
- FlicenseNot gradedqualityCmaintenanceMCP server that exposes a TODO list API to AI assistants, enabling natural language management of tasks with create, read, update, and delete operations.
- AlicenseNot gradedqualityDmaintenanceA small MCP server for managing todos, enabling assistants like Claude to create, update, and query task lists through natural conversation. Stores everything in a local SQLite database.131ISC
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Ismailtlem/mcp-test'
If you have feedback or need assistance with the MCP directory API, please join our Discord server