Skip to main content
Glama
MauricioChaves00

MCP Todo Server (TypeScript)

MCP Todo Server (TypeScript)

MCP 基础服务器,用于管理存储在本地 JSON 文件中的待办事项列表。为 UNA 编程 IV 课程的课外作业 1 (MCP) 而制作。

暴露的能力

类型

名称

描述

Resource

tasks://list

返回 JSON 格式的完整任务列表

Tool

add_task(nombre, descripcion, prioridad)

添加新任务

Tool

complete_task(task_id)

将任务标记为已完成

Prompt

daily_summary

生成任务状态摘要

Related MCP server: Todo MCP Server

安装

  1. 克隆此仓库并进入文件夹:

    git clone <url-del-repo>
    cd mcp-todo-server-ts
  2. 安装依赖:

    npm install
  3. 编译 TypeScript 项目:

    npm run build

运行

使用官方 MCP Inspector(Web 界面,无需 Claude Desktop 即可调用 resource、tools 和 prompt)测试服务器:

npm run inspector

直接运行:

npm start

连接 Claude Desktop

请参阅本作业练习 3 中 claude_desktop_config.json 配置部分的说明。要注册的命令指向编译后的文件,例如:

{
  "mcpServers": {
    "todo-server": {
      "command": "node",
      "args": ["C:\\ruta\\completa\\a\\mcp-todo-server-ts\\build\\server.js"]
    }
  }
}

项目结构

mcp-todo-server-ts/
├── src/
│   └── server.ts        # Servidor MCP principal (código fuente)
├── build/                # Generado por "npm run build" (no se sube a git)
├── tasks.json            # Almacenamiento de tareas
├── package.json          # Dependencias y scripts
├── tsconfig.json         # Configuración de TypeScript
└── README.md             # Este archivo

已完成的测试

(请用 npm run inspector 的截图补充,至少展示 3 次交互:例如,添加两个任务并完成一个,以及查询 resource 和 daily_summary 提示。)

A
license - permissive license
-
quality - not tested
-
maintenance - not tested

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that allows AI assistants to manage todo lists stored in a simple markdown file, supporting creation, reading, updating, and deletion of todo items with persistent IDs.
    5
    14
    6
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    A simple MCP server for managing todo items with SQLite database storage, supporting add, list, and remove operations.
    13
    6
    ISC
  • F
    license
    -
    quality
    B
    maintenance
    A lightweight task management MCP server that enables CRUD operations on tasks stored in a single JSON file, including listing, creating, updating progress, and setting priorities.
    133

View all related MCP servers

Related MCP Connectors

  • A basic MCP server to operate on the Postman API.

  • MCP server for generating rough-draft project plans from natural-language prompts.

  • Hosted MCP server for personal tools: budgets, savings goals, spaced repetition, tips, countdowns.

View all MCP Connectors

Latest Blog Posts

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/MauricioChaves00/-mcp-todo-server-ts'

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