Task Manager MCP Server

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.

Category
Visit Server

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 JSON
  • task://summary - Get task statistics summary

2. Tools (Interactive functions)

  • create_task - Add new tasks
  • update_task_status - Change task status
  • get_task - Retrieve task details
  • delete_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://all resource
  • "Create a task to review code" → Calls create_task tool
  • "Update task 1 to in-progress" → Calls update_task_status tool
  • "What's my task summary?" → Uses task://summary resource

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

  1. MCP separates concerns: Resources for data, Tools for actions
  2. Transport agnostic: STDIO for local, HTTP for remote
  3. Schema-driven: Tools define their inputs via JSON Schema
  4. Client-agnostic: Works with any MCP host (Claude Desktop, VS Code, etc.)
  5. Simple protocol: JSON-RPC over transport layer

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured