Skip to main content
Glama

TODO MCP Server

by oseni99

TODO MCP CLI & Server

This repository contains a minimal Model Context Protocol (MCP) implementation for a to-do list application, including:

  • FastAPI server (server/): exposes a /tools endpoint for tool discovery and an /rpc endpoint for JSON-RPC calls to perform operations on tasks.
  • CLI client (client/cli.py): a Python command-line interface that interacts with an LLM (via OpenAI) and the MCP server to create, list, and complete tasks using function calls.

Features

  • Add tasks with title, content, and optional due date
  • List all tasks
  • Mark tasks as completed
  • Server-side task ID generation
  • JSON-RPC 2.0 compliance for tool invocation

Prerequisites

  • Python 3.10+
  • pipenv or venv for virtual environments
  • An OpenAI API key

Installation

  1. Clone the repo:
    git clone https://github.com/oseni99/todo-mcp cd todo-mcp
  2. Create and activate a virtual environment:
    python3 -m venv .venv source .venv/bin/activate
  3. Install dependencies:
    pip install -r requirements.txt
  4. Create a .env in the project root:
    OPENAI_API_KEY=sk-... MCP_SERVER=http://127.0.0.1:8000

Directory Structure

todoMCP/ ├── client/ # CLI client code │ └── cli.py # Main entrypoint for the MCP-CLI ├── server/ # FastAPI server code │ ├── handlers.py # Business logic for add, list, complete │ ├── tools.py # JSON-Schema tool manifest │ └── main.py # FastAPI app with /tools and /rpc ├── .env # Environment variables (not committed) ├── requirements.txt # Python dependencies └── README.md # This file

Running the Server

fastapi dev server/main.py

Running the CLI

From the project root:

python -m client.cli

Type natural language commands at the prompt, for example:

> Create a task titled "Write blog post" with content "Outline first draft" due 2025-05-20 > List my tasks > Mark the first task as done > Thanks! > exit

The CLI will print tool invocations and LLM responses.


-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Una implementación de servidor de protocolo de contexto de modelo minimalista que proporciona herramientas para administrar una lista de tareas pendientes, permitiendo a los usuarios crear tareas, enumerarlas y marcarlas como completadas a través de llamadas JSON-RPC.

  1. Características
    1. Prerrequisitos
      1. Instalación
        1. Estructura del directorio
          1. Ejecución del servidor
            1. Ejecución de la CLI

              Related MCP Servers

              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol server that integrates with Notion's API to manage personal todo lists, allowing users to view, add, and update tasks directly from Claude.
                Last updated -
                22
                MIT License
              • A
                security
                A
                license
                A
                quality
                A Model Context Protocol (MCP) server that provides tools for managing todo items, including creation, updating, completion, deletion, searching, and summarizing tasks.
                Last updated -
                30
                MIT License
              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol server providing comprehensive task management capabilities with support for project organization, task tracking, and automatic PRD parsing into actionable items.
                Last updated -
                23
                MIT License
                • Linux
                • Apple
              • A
                security
                A
                license
                A
                quality
                A task management Model Context Protocol server that helps break down user requests into manageable tasks with subtasks, dependencies, and notes, while enforcing a structured workflow with user approval steps.
                Last updated -
                17
                695
                10
                MIT License

              View all related MCP servers

              MCP directory API

              We provide all the information about MCP servers via our MCP API.

              curl -X GET 'https://glama.ai/api/mcp/v1/servers/oseni99/todo-mcp'

              If you have feedback or need assistance with the MCP directory API, please join our Discord server