Task Manager MCP Server
Enables local task management through the Model Context Protocol with tools for creating, updating, and deleting tasks. It also provides read-only resources for viewing task summaries and full task lists.
README
Task Manager MCP Server
A basic, locally running Model Context Protocol (MCP) server that demonstrates key MCP concepts for task management.
What This Demonstrates
1. Resources (Read-only data)
task://all- View all tasks as JSONtask://summary- Get task statistics summary
2. Tools (Interactive functions)
create_task- Add new tasksupdate_task_status- Change task statusget_task- Retrieve task detailsdelete_task- Remove tasks
3. Key MCP Patterns
- Proper TypeScript typing
- STDIO transport for local servers
- Error handling
- State management
- JSON schema definitions for tools
Setup
# Install dependencies
npm install
# Build the TypeScript
npm run build
# Test locally
npm start
Configure with Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"task-manager": {
"command": "node",
"args": ["/absolute/path/to/task-mcp-server/build/index.js"]
}
}
}
Replace /absolute/path/to/ with your actual path.
Usage Examples
Once configured in Claude Desktop:
- "Show me all tasks" → Uses the
task://allresource - "Create a task to review code" → Calls
create_tasktool - "Update task 1 to in-progress" → Calls
update_task_statustool - "What's my task summary?" → Uses
task://summaryresource
Architecture
- In-memory storage: Simple Map for state (real servers would use DB)
- Type safety: Full TypeScript interfaces
- STDIO transport: Standard for local MCP servers
- Proper logging: Uses stderr to avoid corrupting JSON-RPC
- Schema validation: Tools have JSON schemas for inputs
Key Learnings from undertaking this project
- MCP separates concerns: Resources for data, Tools for actions
- Transport agnostic: STDIO for local, HTTP for remote
- Schema-driven: Tools define their inputs via JSON Schema
- Client-agnostic: Works with any MCP host (Claude Desktop, VS Code, etc.)
- Simple protocol: JSON-RPC over transport layer
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.
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.
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.
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.