mcp-task-manager
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-task-managerwhat should I work on today?"
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-task-manager
A local task manager that plugs into Claude Desktop through Anthropic's Model Context Protocol. No UI, no backend service — just a Python process and a SQLite file. You manage tasks by talking to Claude.
"Create a high-priority task to fix the auth bug, due Friday, tag it backend." → task created. "What should I focus on today?" → returns overdue + urgent + high-priority tasks. "Mark task 3 completed and show me a summary." → done + stats.
Stack: Python 3.11+ · FastMCP · SQLite · Pydantic v2 Status: working locally, 9 tools implemented
Why this project
Built to learn MCP end-to-end: server lifecycle, tool registration, stdio transport, and how Claude picks tools from natural-language requests. It's a small but complete example — the kind of thing you'd extend into a real internal tool at work.
How it works
MCP servers run as a local subprocess. Claude Desktop talks to the server over stdio using JSON-RPC. When you type a message, Claude:
Picks which registered tool fits the request
Fills in the parameters from your natural language
Calls the tool, gets back structured data (Pydantic models)
Summarises the result back to you in plain English
Claude Desktop ──── JSON-RPC (stdio) ──── server.py (FastMCP)
│
TaskRepository
│
tasks.db (SQLite)Tools
Tool | What it does |
| Create a task with title, description, priority, due date, tags |
| List tasks, optionally filtered by status and/or priority |
| Fetch a single task by ID |
| Update any field (title, description, priority, status, due date, tags) |
| Shortcut — mark as |
| Delete a task by ID |
| Substring search across title, description, and tags |
| Counts by status and priority + overdue count |
| Prioritised focus list for today (overdue + urgent + high) |
Priorities: low · medium · high · urgent
Statuses: pending · in_progress · completed · cancelled
Project structure
mcp-task-manager/
├── server.py # FastMCP entry point, tool registration, lifespan
├── core/
│ ├── models.py # Pydantic models + enums (Task, TaskCreate, TaskUpdate, TaskSummary)
│ └── repository.py # SQLite DAO — CRUD, search, summary
├── tools/
│ └── __init__.py # 9 MCP tool functions (thin layer over repository)
├── pyproject.toml
└── .env.exampleThree layers, one responsibility each:
tools/— the MCP-facing surface. Each function has a docstring that Claude reads to understand when/how to call it.core/repository.py— SQLite access. Raw SQL, indexed onstatus,priority,due_date.core/models.py— validation, serialization, enums.
Setup
Requirements: Python 3.11+, Claude Desktop.
git clone https://github.com/soltyDude/mcp-task-manager.git
cd mcp-task-manager
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .
cp .env.example .envConnect to Claude Desktop
Open your Claude Desktop config:
macOS —
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows —
%APPDATA%\Claude\claude_desktop_config.json
Add the server:
{
"mcpServers": {
"mcp-task-manager": {
"command": "/absolute/path/to/mcp-task-manager/.venv/bin/python",
"args": ["/absolute/path/to/mcp-task-manager/server.py"]
}
}
}Restart Claude Desktop. The tools will show up under the 🔌 icon.
Configuration
.env supports two variables:
DATABASE_PATH=tasks.db # where SQLite stores data
SERVER_NAME=mcp-task-manager # name shown in Claude DesktopExample session
You: Add a task: refactor the auth filter, high priority, due tomorrow, tags: backend, security
Claude: Created task #1 — "Refactor the auth filter" (high, due 2025-04-19, tags: backend, security)
You: What's my plan for today?
Claude: 📅 Day plan for 2025-04-18
🔥 FOCUS (urgent + high priority)
[1] [HIGH] Refactor the auth filter #backend #security
📊 Total: 1 | In progress: 0 | Overdue: 0
You: Mark it in progress and show a summary
Claude: Task #1 updated — status: in_progress.
📊 Total: 1 | Pending: 0 | In progress: 1 | Completed: 0 | Overdue: 0Design notes
A few choices worth calling out, in case you're reading this as a reviewer:
Lifespan-scoped repository. The
TaskRepositoryis built once in FastMCP'slifespancontext manager and injected viactx.request_context.lifespan_context. Tools stay stateless; the connection details don't leak into tool code.Enums instead of magic strings.
PriorityandTaskStatusarestrenums — validated by Pydantic on input, stored as strings in SQLite, typed everywhere in between.Tags as JSON in a TEXT column. Pragmatic for SQLite — no junction table needed for a local tool. Search uses
LIKEover the serialized JSON. If this ever moved to Postgres, it'd become atext[]or a real tags table.Indexed the hot paths.
status,priority,due_date— the three columns every filter hits.plan_daydeduplicates. Urgent and high-priority queries can overlap with the overdue list, so the final focus list is built with aseenset.
Limitations / next steps
No tests yet — planned:
pytestwith an in-memory SQLite fixture for the repository layer.No recurring tasks.
Search is
LIKE-based; for a bigger dataset, SQLite FTS5 would be the upgrade.Single-user, single-machine by design. Multi-user would mean swapping SQLite for Postgres and adding a user column.
License
MIT
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/soltyDude/mcp-task-manager'
If you have feedback or need assistance with the MCP directory API, please join our Discord server