npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-todo-app-server

v1.0.2

Published

MCP Server for mcp-todo app - Todo and Memo management

Readme

mcp-todo MCP Server

mcp-todo 앱의 Todo/Memo API를 MCP (Model Context Protocol)로 연결하는 서버입니다.

설치

npm install -g mcp-todo-app-server

환경 변수

| 변수 | 필수 | 설명 | |------|------|------| | MCP_TODO_WORKSPACE_ID | 필수 | mcp-todo 앱에서 발급받은 Workspace ID | | MCP_TODO_API_URL | 선택 | API URL (기본값 설정됨) |

Claude Desktop 앱에서 사용하기

~/Library/Application Support/Claude/claude_desktop_config.json 파일을 열고 (없으면 생성):

{
  "mcpServers": {
    "mcp-todo": {
      "command": "npx",
      "args": ["-y", "mcp-todo-app-server"],
      "env": {
        "MCP_TODO_WORKSPACE_ID": "여기에-워크스페이스-ID-입력"
      }
    }
  }
}

설정 후 Claude Desktop 앱을 재시작하세요.

Claude Code (CLI)에서 사용하기

~/.claude/settings.json 파일에 추가:

{
  "mcpServers": {
    "mcp-todo": {
      "command": "npx",
      "args": ["-y", "mcp-todo-app-server"],
      "env": {
        "MCP_TODO_WORKSPACE_ID": "여기에-워크스페이스-ID-입력"
      }
    }
  }
}

사용 가능한 Tools

Todo 관련

| Tool | 설명 | |------|------| | list_todos | 일정 목록 조회 (카테고리, 날짜 필터 가능) | | create_todo | 새 일정 생성 | | update_todo | 일정 수정 | | delete_todo | 일정 삭제 |

Memo 관련

| Tool | 설명 | |------|------| | list_memos | 메모 목록 조회 | | get_memo | 메모 상세 조회 | | create_memo | 새 메모 생성 | | update_memo | 메모 수정 | | delete_memo | 메모 삭제 |

사용 예시

Claude에게 다음과 같이 요청할 수 있습니다:

  • "오늘 할 일 목록 보여줘"
  • "내일 14시에 '팀 미팅' 일정 추가해줘"
  • "'회의록' 제목으로 새 메모 만들어줘"
  • "일정 완료 처리해줘"

License

MIT