TaskMCP
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., "@TaskMCPCreate a high-priority task 'Review design system' in the Inbox project"
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.
TaskMCP
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.
Related MCP server: Tasks MCP Server
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 installScripts
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:buildThe 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 |
| List all projects |
GET |
| List all labels |
GET |
| List tasks (query: |
GET |
| Get a single task |
POST |
| Create a task |
PATCH |
| Update a task |
DELETE |
| Delete a task |
POST |
| 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 webOpen
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
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.
Latest Blog Posts
- 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/CCLucky-uu/CcTaskMcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server