taskboard-mcp
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., "@taskboard-mcpshow my open tasks for the website 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.
taskboard-mcp
A small MCP server for task/todo tracking — structured, deterministic, no AI involved in the tool itself. Built for LLM agents (or anyone) that need to track work across sessions without paying the token cost of hand-editing a growing text file on every status change.
Why
Text-file task trackers (a TASKS.md you hand-edit) work, but get expensive to maintain
as they grow — every update means finding and rewriting a chunk of existing text. A
proper tool takes a few structured arguments (task_update(id, state="done")) instead,
and does the file/DB I/O itself.
Related MCP server: MCP Project Manager
Design
TypeScript, built on the official MCP SDK.
SQLite-backed storage (
better-sqlite3) — structured, queryable, deterministic.Tasks are scoped by project/board, so one server instance can track work across many unrelated projects —
scopeis a first-class filter on every tool.Communicates over stdio, like any standard MCP server.
Tools
Tool | Arguments | Description |
|
| Create a new task (starts in state |
|
| Update fields on an existing task. |
| optional | List tasks, filtered by scope and/or state. |
|
| Shorthand for |
|
| Permanently delete a task. |
Valid state values: open, in_progress, done.
Every task has: id, scope, content, state, created_at, updated_at,
completed_at.
Install
git clone https://github.com/fellam/taskboard-mcp.git
cd taskboard-mcp
npm install
npm run buildThis produces dist/index.js, a runnable Node entrypoint that speaks MCP over stdio.
Usage
Storage location
By default, data is stored in a SQLite file at ~/.taskboard-mcp/tasks.db. Override with
the TASKBOARD_DB_PATH environment variable to point at a different file (or :memory:
for an ephemeral in-process database, mainly useful for testing).
Wiring into Claude Code (.mcp.json)
Add this to your project's .mcp.json (or claude_desktop_config.json for Claude
Desktop):
{
"mcpServers": {
"taskboard": {
"command": "node",
"args": ["/absolute/path/to/taskboard-mcp/dist/index.js"],
"env": {
"TASKBOARD_DB_PATH": "/absolute/path/to/your/tasks.db"
}
}
}
}Omit env.TASKBOARD_DB_PATH to use the default location. Restart your MCP client after
editing the config.
Running directly
npm start # runs the built server (dist/index.js) over stdio
npm run dev # runs src/index.ts directly via tsx, no build stepDevelopment
npm test # runs the test suite (node's built-in test runner + tsx)
npm run build # type-checks and compiles src/ to dist/License
MIT — see LICENSE.
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 Connectors
Local-first task manager: create, edit, and complete tasks, projects, and checklists via MCP.
Project management MCP for AI agents with safe task reads and writes.
Manage Superlist tasks and lists in plain language from any MCP-compatible AI agent.
- DazbenchOAuthapp.dazbench
Task management your AI agents can actually run. One line becomes a context-ready task over MCP.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage tasks with full lifecycle support including due dates, priorities, tags, subtasks, and project lists via 19 SQLite-backed MCP tools.4-
- FlicenseAqualityDmaintenanceEnables task management (create, list, update tasks with priority and status) using SQLite storage via MCP tools.3-
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to create, read, and manage tasks and projects in a personal todo system through MCP tools.MIT
- FlicenseAqualityBmaintenanceEnables coding agents to track and coordinate project work through a shared SQLite ledger, including task plans, session ancestry, claims, work locations, blockers, and commits via MCP tools.9-