- Explore MCP Servers
- todo-list-with-mcp
Todo List With Mcp
What is Todo List With Mcp
todo-list-with-mcp is a full-stack Todo List application that utilizes a React frontend, an Express backend, and an MCP server for AI integration.
Use cases
Use cases include personal productivity tracking, team project management, integrating AI assistants for enhanced task management, and educational tools for students to manage assignments.
How to use
To use todo-list-with-mcp, you can either start all modules together with a single command using ‘pnpm start’ after installing dependencies, or start each module individually by navigating to their respective directories and running ‘pnpm dev’ for the frontend and backend, and ‘pnpm start’ for the MCP server.
Key features
Key features include displaying a list of todo items, adding new items, editing existing items, marking items as completed, deleting items, and viewing creation and update timestamps.
Where to use
todo-list-with-mcp can be used in various fields such as personal task management, team collaboration, project management, and any application requiring a task tracking system.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Todo List With Mcp
todo-list-with-mcp is a full-stack Todo List application that utilizes a React frontend, an Express backend, and an MCP server for AI integration.
Use cases
Use cases include personal productivity tracking, team project management, integrating AI assistants for enhanced task management, and educational tools for students to manage assignments.
How to use
To use todo-list-with-mcp, you can either start all modules together with a single command using ‘pnpm start’ after installing dependencies, or start each module individually by navigating to their respective directories and running ‘pnpm dev’ for the frontend and backend, and ‘pnpm start’ for the MCP server.
Key features
Key features include displaying a list of todo items, adding new items, editing existing items, marking items as completed, deleting items, and viewing creation and update timestamps.
Where to use
todo-list-with-mcp can be used in various fields such as personal task management, team collaboration, project management, and any application requiring a task tracking system.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Todo List Application
A simple full-stack Todo List application with a React frontend and Express backend.
Project Structure
/frontend- React + Vite frontend with TypeScript/backend- Express.js backend with TypeScript/mcp-server- Model Context Protocol server for AI integration
Features
- Display a list of todo items
- Add new todo items
- Edit existing todo items
- Mark todo items as completed
- Delete todo items
- View creation and update timestamps
Setup Instructions
Option 1: Start All Modules Together
This project uses concurrently to start all services with a single command:
-
Install dependencies for all modules:
pnpm install -
Start all services (frontend, backend, and mcp-server):
pnpm start
Option 2: Start Modules Individually
Backend
-
Navigate to the backend directory:
cd backend -
Install dependencies:
pnpm install -
Start the development server:
pnpm dev
The backend will run on http://localhost:3001.
Frontend
-
Navigate to the frontend directory:
cd frontend -
Install dependencies:
pnpm install -
Start the development server:
pnpm dev
The frontend will run on http://localhost:5173 by default.
MCP Server
-
Navigate to the mcp-server directory:
cd mcp-server -
Install dependencies:
pnpm install -
Build the TypeScript code:
pnpm build -
Start the server:
pnpm start
The MCP server will run on http://localhost:3002.
Using the MCP Server with Claude
The MCP (Model Context Protocol) server allows AI assistants like Claude to interact with your todo list application.
Method 1: Manual Configuration
- Ensure both your backend (port 3001) and the MCP server (port 3002) are running
- Add the MCP server URL (http://localhost:3002) to Claude Desktop
- Ask Claude to perform todo operations
Method 2: Automatic Integration with Claude Desktop
For automatic integration with Claude Desktop:
-
First, build the MCP server:
cd mcp-server pnpm build -
Add the following configuration to your Claude Desktop configuration file (
claude_desktop_config.json):{ "mcpServers": { "todos": { "command": "node", "args": [ "absolute/path/to/mcp-server/dist/index.js" ] } } }Note: Update the path in the
argsarray to match your project’s location on your system. -
Start Claude Desktop and it will automatically launch the MCP server
Once configured, you can ask Claude to perform todo operations like:
- “Show me my todo list”
- “Create a new todo to buy groceries”
- “Mark the todo about buying milk as completed”
- “Delete the todo about meeting John”
The MCP server provides the following features:
- List all todos
- Create new todos
- Update existing todos
- Delete todos
API Endpoints
GET /todos- Get all todosPOST /todos- Create a new todoPUT /todos/:id- Update a todoDELETE /todos/:id- Delete a todo
Todo Data Structure
interface Todo {
id: string;
title: string;
completed: boolean;
createdAt: string;
updatedAt?: string;
}
Notes
- The backend uses a local
db.jsonfile to store todos (no database required) - The frontend uses React hooks (useState, useEffect) for state management
- Basic styling is included in App.css
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










