Skip to main content
Glama
MauricioChaves00

MCP Todo Server (TypeScript)

MCP Todo Server (TypeScript)

로컬 JSON 파일에 저장된 할 일 목록을 관리하는 기본 MCP 서버입니다. 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(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

수행된 테스트

(최소 3개의 상호작용을 보여주는 npm run inspector의 스크린샷으로 완성하세요: 예를 들어, 할 일 두 개 추가 및 하나 완료, resource 및 daily_summary prompt 조회.)

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