Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Local Task Manager Server

FreeNot checked

A task manager MCP server that enables creating, reading, updating, and deleting tasks persisted in a local JSON file.

GitHubEmbed

About

A task manager MCP server that enables creating, reading, updating, and deleting tasks persisted in a local JSON file.

README

A beginner-friendly Model Context Protocol server built with Python and FastMCP.

This project demonstrates how an MCP server can expose structured tools that allow an AI application to create, read, update, and delete tasks stored in a local JSON file.

Features

  • Add a task
  • List all tasks
  • Filter completed or incomplete tasks
  • Mark a task as completed
  • Delete a task
  • Persist task data in tasks.json
  • Return structured MCP responses
  • Handle invalid task IDs and input errors

MCP Tools

add_task

Creates a new task.

Inputs:

  • title: Required task title
  • description: Optional task description

list_tasks

Lists saved tasks.

Optional input:

  • completed: Filter by completion status

complete_task

Marks a task as completed.

Input:

  • task_id: ID of the task

delete_task

Deletes a task.

Input:

  • task_id: ID of the task

Project Structure

task-manager-mcp/
├── main.py
├── tasks.json
├── pyproject.toml
├── uv.lock
└── README.md

Requirements

  • Python 3.10 or later
  • uv
  • Node.js and npm for MCP Inspector

Install Dependencies

uv sync

Run with MCP Inspector

uv run mcp dev main.py

The Inspector should display these tools:

add_task
list_tasks
complete_task
delete_task

Example Task

{
  "id": 1,
  "title": "Prepare Day 5 MCP article",
  "description": "Connect the Task Manager MCP Server to Trello",
  "completed": false
}

Example Flow

User request
    ↓
MCP client
    ↓
Local Task Manager MCP Server
    ↓
Python tool
    ↓
tasks.json
    ↓
Structured response

What This Project Teaches

  • Creating an MCP server with FastMCP
  • Exposing Python functions using @mcp.tool()
  • Generating tool schemas from type hints
  • Returning structured data
  • Validating tool inputs
  • Handling expected errors
  • Persisting data in a local JSON file
  • Testing MCP tools with MCP Inspector

Roadmap

The next version will connect the same task-management capabilities to Trello:

add_task → Create a Trello card
list_tasks → List Trello cards
complete_task → Move a card to Done
delete_task → Archive a Trello card

Author

Akbar Shaik

Machine Learning Engineer teaching MCP servers and AI agents from scratch.

from github.com/akbarshaik2243/task-manager-mcp

Installing Local Task Manager Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/akbarshaik2243/task-manager-mcp

FAQ

Is Local Task Manager Server MCP free?

Yes, Local Task Manager Server MCP is free — one-click install via Unyly at no cost.

Does Local Task Manager Server need an API key?

No, Local Task Manager Server runs without API keys or environment variables.

Is Local Task Manager Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Local Task Manager Server in Claude Desktop, Claude Code or Cursor?

Open Local Task Manager Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Local Task Manager Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All productivity MCPs