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

todos-mcp

v1.2.0

Published

A todo list application implementing Model Context Protocol (MCP)

Readme

MCP Todo List App

A todo list application implementing Model Context Protocol (MCP), enabling seamless interaction with AI assistants and chatbots. This application is a practical todo list manager and a demonstration of MCP integration.

Features

  • ✨ Full todo list functionality (create, read, update, delete tasks)
  • 🤖 MCP-compliant API for AI assistant integration
  • 🏠 Local storage (no SaaS account required)

What is MCP?

The Model Context Protocol (MCP) is a standardized interface that allows AI models and chatbots to interact with applications in a consistent and predictable way. By implementing MCP, this todo list app can be seamlessly controlled by AI assistants, enabling natural language interactions for task management.

Getting Started

  1. Open Claude config file
  2. Add the todos server to your claude_desktop_config.json (usually found at ~/Library/Application Support/Claude/claude_desktop_config.json on MacOS)
{
  "mcpServers": {
    // ...
    "todos": {
      "command": "npx",
      "args": ["-y", "todos-mcp"]
    }
    // ...
  }
}

Development

Prerequisites

  • Node.js (v16 or higher)
  • npm or yarn

Installation

  1. Clone the repository:
git clone https://github.com/tomelliot/todos-mcp.git
cd mcp-todo-app
  1. Install dependencies:
npm install
# or
yarn install
  1. Start the development server:
npm run dev
# or
yarn dev

MCP Integration

This todo list app exposes the following MCP tools:

  • Get-Todo: Get a specific todo by ID
  • List-All-Todos: List all todos
  • List-Completed-Todos: List all completed todos
  • List-Pending-Todos: List all pending todos
  • Add-Todo: Add a todo
  • Mark-Todo-Done: Mark a todo item as completed
  • List-Due-Today: List all pending todos that are due today or overdue
  • List-Due-This-Week: List all pending todos that are due this week or earlier
  • Update-Todo: Update a todo's description and/or due date

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the GPL License - see the LICENSE file for details.

Acknowledgments

  • Built with modern web technologies
  • Implements MCP specification for AI integration
  • Inspired by the need for AI-friendly applications