TaskMCP
FreeNot checkedA personal task management MCP server that allows LLM clients to create, read, update, and delete tasks with projects, labels, and comments, using a local SQLit
About
A personal task management MCP server that allows LLM clients to create, read, update, and delete tasks with projects, labels, and comments, using a local SQLite database that can also be accessed via a web UI.
README
A personal task management system with a lightweight Web UI and a Model Context Protocol (MCP) server.
Features
- Local-first SQLite storage.
- MCP server for LLM clients (stdio transport).
- Terminal-inspired Web UI with React + Tailwind CSS v4.
- Drag-and-drop task cards across status columns.
- Inline card editing and per-column task creation.
- Projects, tasks, labels, and comments.
- Both LLM and browser write to the same database.
Architecture
TaskMCP runs as two independent processes that share a single SQLite file:
npm run mcp— MCP server on stdio for LLM clients.npm run web— Hono web server onhttp://localhost:3000.
Both processes open the same better-sqlite3 database configured with WAL mode and a 5 second busy timeout, so they can run concurrently without blocking each other.
Installation
npm install
Scripts
npm run build— Compile TypeScript.npm run typecheck— Run TypeScript without emitting files.npm run test— Run Vitest tests.npm run mcp— Start the MCP server (stdio).npm run web:build— Build the React client and Tailwind CSS output.npm run web:watch— Run the web server with automatic client rebuilds on file changes.npm run web:serve— Start only the Hono API/static server.npm run web— Build and start the web UI onhttp://localhost:3000.npm run css:build— Build the Tailwind CSS output.npm run design:lint— ValidateDESIGN.md.npm run design:export— Export design tokens tosrc/web/static/theme.css.npm run lint— Run ESLint.npm run format— Format files with Prettier.
Design System
Visual tokens are defined in DESIGN.md. Export them and rebuild CSS with:
npm run design:export
npm run css:build
The front-end is built with React, bundled by esbuild, and styled with Tailwind CSS v4 classes generated from src/web/client/index.css.
Note: The
@google/design.mdv0.3.0exportCLI does not emit CSS correctly, sodesign:exportruns a small local script (scripts/generate-theme.js) that parsesDESIGN.mdand generates the equivalent Tailwind v4@themeblock.
Configuration
Set TASKMCP_DB_PATH to override the default SQLite database location (.data/taskmcp.db).
API Endpoints
All endpoints are mounted under /api:
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/projects |
List all projects |
| GET | /api/labels |
List all labels |
| GET | /api/tasks |
List tasks (query: projectId, status, label, query) |
| GET | /api/tasks/:id |
Get a single task |
| POST | /api/tasks |
Create a task |
| PATCH | /api/tasks/:id |
Update a task |
| DELETE | /api/tasks/:id |
Delete a task |
| POST | /api/tasks/:id/comments |
Add a comment |
Usage Workflows
Add a task through your LLM client
- Configure the MCP client (see below).
- Ask it to create a task:
在收件箱项目里创建一个标题为 "Review design system" 的高优先级任务。 - The task is written to
.data/taskmcp.db.
View and edit tasks in the browser
- Start the web server:
npm run web - Open
http://localhost:3000. - Use the search box, status filter, or label filter to find tasks.
- Click a task card to edit, change status, add comments, or delete it.
Both interfaces share the same data
Because MCP and Web open the same SQLite file, any change from one side appears in the other immediately after a refresh.
MCP Clients
Replace /path/to/CcTaskMCP with the actual project path.
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"taskmcp": {
"command": "npx",
"args": ["tsx", "/path/to/CcTaskMCP/src/mcp/index.ts"]
}
}
}
opencode (opencode.json)
{
"mcp": {
"taskmcp": {
"command": "npx",
"args": ["tsx", "/path/to/CcTaskMCP/src/mcp/index.ts"]
}
}
}
Note on the MCP SDK
The plan originally referenced @modelcontextprotocol/sdk@^2.x; npm currently ships 1.29.0 as the latest stable release. The server is implemented with the v1 McpServer API and is functionally equivalent for this project.
License
MIT
Installing TaskMCP
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/CCLucky-uu/CcTaskMcpFAQ
Is TaskMCP MCP free?
Yes, TaskMCP MCP is free — one-click install via Unyly at no cost.
Does TaskMCP need an API key?
No, TaskMCP runs without API keys or environment variables.
Is TaskMCP hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install TaskMCP in Claude Desktop, Claude Code or Cursor?
Open TaskMCP on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
by wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
by madhurprashPostgres
Query your database in natural language
by AnthropicPostgreSQL
Read-only database access with schema inspection.
by modelcontextprotocolCompare TaskMCP with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All data MCPs
