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 me the current board summary"
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
An MCP server that integrates a Kanban task board into a sandboxed agent environment, built with FastMCP.
The interesting part is not the task board. It is the integration contract: what an RL sandbox needs from an application before it can be used to train or evaluate an agent — a deterministic starting state, an exact snapshot, a restore that round-trips, and rules that hold at the protocol boundary rather than only in the UI.
┌──────────────┐ MCP over stdio/http ┌─────────────────┐
│ agent / │◄───────────────────────►│ server.py │ protocol layer
│ harness │ │ (FastMCP) │ 15 tools, 3 resources
└──────────────┘ └────────┬────────┘
│ │
│ populate / snapshot / restore │
│ (out of band, via CLI) ▼
│ ┌─────────────────┐
└────────────────────────────────►│ db.py │ application layer
│ state.py │ rules + persistence
└────────┬────────┘
▼
SQLite @ /dataWhy the layers are split
server.py contains no business rules. Every tool is a two-line translation
between an MCP call and a function in db.py or state.py. That split buys
three things:
The app is testable without a protocol client in the loop (
test_db.py).The protocol surface is testable without reasoning about business rules (
test_mcp_surface.py).The same rules apply whether a call arrives from an agent, the CLI, or the harness — an agent cannot reach an illegal board state by going around the tool layer, because the tool layer is not where the check lives.
Expected failures raise TaskboardError subclasses and are mapped to
ToolError at the boundary. Unexpected exceptions are deliberately not
caught, so a genuine bug surfaces as a server error instead of being disguised
as a normal negative result.
Related MCP server: ForgeSwarm
State hooks
Snapshots are JSON, not a copy of the SQLite file. That costs a little speed and buys a lot: snapshots are diffable, hand-editable, portable across schema-compatible versions, and comparable by hash.
Every snapshot carries a digest — a SHA-256 over the logical state with
volatile fields (row ids, timestamps) excluded, and comments keyed to their
task by title rather than by id. Two boards that arrive at the same logical
state by different routes produce the same digest:
# different ids, different timestamps, same digest
assert snapshot_a["digest"] == snapshot_b["digest"]That is what makes "did the agent reach the target state?" a one-line check instead of a bespoke comparison per task.
python -m taskboard_mcp populate sprint_demo # deterministic start state
python -m taskboard_mcp snapshot > before.json
python -m taskboard_mcp restore before.json # exact round trip
python -m taskboard_mcp reset # empty board
python -m taskboard_mcp healthcheck # exit 0 if usableTool surface
Tag | Tools |
|
|
|
|
|
|
Resources: taskboard://board/summary, taskboard://task/{task_id},
taskboard://schema.
Tags are how a deployment filters the agent-visible tool list — see
tool_visibility in app.yaml. The harness still calls admin tools out of
band.
Transition rules
Tasks move through backlog → in_progress → review → done. Skipping a column
is rejected, and so is a no-op move. list_transitions and the
taskboard://schema resource both expose the table so a client can check
before it calls rather than discovering the rule through an error.
Configuration
All configuration is environment-driven, so one image deploys to any sandbox slot without a rebuild.
Variable | Default | Purpose |
|
| SQLite location |
|
| Where |
|
|
|
|
| HTTP bind |
| unset | Reject all mutating tools |
Local development
make install # venv + editable install with dev extras
make test # 51 tests
make smoke # spawns the server as a subprocess, drives a full episode
make lint
make run # serve on stdio against ./local.dbDocker
make docker-build
docker run --rm -i -v taskboard-data:/data taskboard-mcp:0.1.0 serve
docker run --rm -v taskboard-data:/data taskboard-mcp:0.1.0 populate sprint_demoMulti-stage build, non-root user (uid 10001), /data as the only writable
path, and a HEALTHCHECK wired to the CLI's healthcheck subcommand.
Testing approach
51 tests across three layers:
test_db.py— business rules: transition legality, validation, cascade deletes, search behaviour, summary arithmetic.test_state.py— the hooks that matter for sandbox integration: exact round-trip, digest stability under id/timestamp churn, digest sensitivity to real changes, path-traversal rejection on fixture names, autoincrement reset after restore.test_mcp_surface.py— protocol layer via an in-memoryClient: tool registration, docstring coverage, resource templates, error mapping, read-only enforcement.
Each test runs against its own SQLite file in a tmp_path, so the suite is
order-independent.
The suite is mutation-checked: making an illegal transition legal in
config.py turns three tests red, including one that only reads the schema
resource. Tests that stay green under a rule change are not testing the rule.
Connecting a client
{
"mcpServers": {
"taskboard": {
"command": "python",
"args": ["-m", "taskboard_mcp", "serve"],
"env": {
"TASKBOARD_DB_PATH": "/data/taskboard.db",
"TASKBOARD_FIXTURES_DIR": "/app/fixtures"
}
}
}
}Known limitations
SQLite means a single writer. Fine for one sandbox per container, which is the deployment model; it would need revisiting for a shared instance.
Full-state snapshots are
O(n)in board size. At fixture scale that is microseconds, but a board with millions of tasks would want incremental capture.Search is
LIKE-based substring matching, not FTS. Adequate for the tool surface;sqlite3FTS5 would be the upgrade path if search quality mattered.
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
- Alicense-qualityDmaintenanceAn MCP server that provides a database-backed kanban board with 40+ tools for AI agents to track issues, features, todos, epics, and diary entries across projects, including status workflows, relationships, and semantic search.Last updated77MIT
- AlicenseAqualityAmaintenanceAn MCP server that turns independent AI agents into a coordinated engineering team with shared task board, context, review loop, and enforced plan-implement-review-iterate workflow.Last updated24MIT
- Alicense-qualityAmaintenanceA kanban board MCP server that enables AI agents to read and write project boards through session loops, with built-in cost tracking and local-first storage.Last updated151MIT
- Alicense-qualityBmaintenanceAn MCP server that provides shared memory, kanban board, and agent registry for AI agents to collaborate as a team, with a live dashboard for human oversight.Last updatedMIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
ArcAgent MCP server for bounty discovery, workspace execution, and verified coding submissions.
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/sharathStack/mcp-app-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server