Task Board MCP Server
A task-board MCP server that provides tools to search, create, and update tasks, resources for reading the board, and prompts for standup and triage workflows.
README
ModelContextProtocol
A task-board MCP server that exercises all three server primitives — tools, resources, and prompts — plus a host that drives it with a cheap model, and a protocol-level test suite.
Part of ai_engineering.
THEORY.md covers the concepts: what MCP actually standardises and what it does
not, why the tool/resource/prompt split is about who decides rather than what
the data is, the stdio rule that breaks more servers than anything else, why
tool errors must not be thrown, annotations as host hints, and how to test a
server so its failures are visible.
Getting started
npm install
npm run seed # writes a 5-task starting board
npm test # 27 protocol-level assertions, no API key needed
For the LLM host, copy .env.example to .env and add an OpenAI key:
npm run client -- "What is left to do?"
npm run client -- "Check whether anything about CI is tracked, and mark it done."
Defaults to gpt-4o-mini. Tool calling does not need a frontier model — set
MODEL in .env to change it.
What's here
| File | Role |
|---|---|
server.js |
The MCP server — 3 tools, 2 resources, 2 prompts, over stdio |
store.js |
Board logic, pure and testable, knows nothing about MCP |
client.js |
A minimal host: MCP client + model + tool loop |
test.js |
Protocol test — spawns the real server over the real transport |
seed.js |
Writes a starting board |
The three primitives, as implemented here
The split is about who decides, not what the data is:
| Primitive | Decided by | Here |
|---|---|---|
| Resources | the application | task://board, task://item/{id} |
| Tools | the model | search_tasks, create_task, set_status |
| Prompts | the user | /standup, /triage |
client.js shows the distinction concretely: it reads task://board itself
before the model runs, and lets the model choose when to call search_tasks.
Nothing stops you exposing the board as a tool — but then the model decides
what context to load, which is the thing resources exist to avoid.
Testing
1. MCP Inspector — for looking
The official interactive client. Nothing to install:
npm run inspect
That runs npx @modelcontextprotocol/inspector node server.js, which opens a
browser UI with a pre-filled session token. In it you can:
- Tools → list, inspect schemas and annotations, call with arbitrary args
- Resources → browse
task://board, and see the template expand to real ids. Typetask://item/and autocompletion offers ids from the live board. - Prompts → render
standupwith afocusargument and read the message it produces - Errors / notifications panes → everything the server writes to stderr
The Inspector also has a CLI mode, which is what to reach for in a script:
npx @modelcontextprotocol/inspector --cli node server.js --method tools/list
npx @modelcontextprotocol/inspector --cli node server.js \
--method tools/call --tool-name search_tasks --tool-arg query=docs
2. npm test — for knowing
The Inspector shows you one call at a time and depends on you noticing. The test suite asserts 27 properties in about a second, with no API key and no model:
DISCOVERY every tool, resource, template and prompt is registered
SCHEMAS + ANNOTATIONS read-only, destructive, idempotent flags are correct
HAPPY PATH a write shows up in the resource
STRUCTURED OUTPUT structuredContent validates against outputSchema
THE EMPTY CASE a search with no results explains itself
ERROR HANDLING bad input returns isError rather than throwing
DISCOVERABILITY template completion and prompt arguments work
It spawns server.js as a subprocess over stdio using the SDK's own Client,
so it exercises the same transport and schemas the Inspector and Claude Code do.
It stashes any real data/tasks.json first and restores it after.
Why assert annotations. A tool marked readOnlyHint when it writes will
skip the confirmation prompt a host would otherwise show. Nothing errors. The
only place that mistake is visible is a test that reads the flag back.
Using it from Claude Code
claude mcp add task-board -- node /absolute/path/to/ModelContextProtocol/server.js
Then /mcp lists the server, its tools appear to the model, and /standup
shows up as a slash command.
The one rule that breaks servers
On stdio, stdout is the protocol. Every byte must be a JSON-RPC message. A
single console.log in a handler corrupts the stream, and the client
disconnects with a parse error that names no line of your code. All diagnostics
go to console.error. THEORY.md §6 has the full argument.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.