Task Manager MCP Server

Task Manager MCP Server

Enables task management through natural language with full CRUD operations including add, list, update, complete, and delete tasks with JSON persistence.

Category
Visit Server

README

Task Manager MCP Server

A Model Context Protocol (MCP) server for managing tasks with JSON persistence and a real-time Vue.js UI.

Features

  • ✅ Add tasks with title and optional description
  • ✅ List all tasks or filter by completion status
  • ✅ Update task details
  • ✅ Mark tasks as completed
  • ✅ Delete tasks
  • ✅ JSON file persistence (stored in data/tasks.json)
  • ✅ Real-time Vue.js UI that syncs with MCP changes
  • ✅ Live updates using Server-Sent Events (SSE)

Project Structure

mcp-study/
├── src/
│   ├── index.ts         # MCP server
│   ├── storage.ts       # JSON persistence
│   ├── api-server.ts    # REST API + SSE for UI
│   └── types.ts         # TypeScript types
├── ui/                  # Vue.js frontend
│   └── src/
│       └── components/
│           └── TaskList.vue
├── data/                # Task storage
│   └── tasks.json
└── README.md

Quick Start

1. Install Dependencies

npm install
cd ui && npm install && cd ..

2. Build the MCP Server

npm run build

3. Configure Claude Desktop

Add to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "task-manager": {
      "command": "/Users/YOUR_USERNAME/.nvm/versions/node/v25.2.1/bin/node",
      "args": ["/absolute/path/to/mcp-study/dist/index.js"]
    }
  }
}

Replace the paths with your actual paths. Restart Claude Desktop.

4. Start the Demo UI

./start-demo.sh

This starts:

  • API server on http://localhost:3001
  • Vue UI on http://localhost:5173

Usage

Through Claude (MCP)

Talk to Claude in Claude Desktop:

  • Add a task: "Add a task to buy groceries"
  • List tasks: "Show me all my tasks"
  • Update task: "Update task [id] and change the title"
  • Complete task: "Mark task [id] as completed"
  • Delete task: "Delete task [id]"

Through the UI

  1. Open http://localhost:5173 in your browser
  2. Watch tasks appear in real-time as you add them through Claude
  3. See live updates when tasks are completed or modified

The Magic ✨

This demo showcases the power of MCPs:

  1. Conversational Interface: Manage tasks through natural language with Claude
  2. Visual Interface: See the same data in a beautiful UI
  3. Real-Time Sync: Changes from Claude appear instantly in the UI
  4. Shared Data: Both interfaces read/write to the same tasks.json file

Try it:

  1. Ask Claude to "Add a task to learn about MCPs"
  2. Watch it appear in the UI instantly
  3. The UI updates in real-time via Server-Sent Events!

Development

Run MCP Server Only

npm run dev

Run API Server Only

npm run api

Run Vue UI Only

cd ui && npm run dev

Build for Production

npm run build

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