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

mcptodo

v0.0.2

Published

MCP Todo CLI: run server and frontend, or initialize a project.

Readme

MCP Todo

A full-stack to-do manager with a Vite React frontend, Express/SQLite backend, and a CLI for local development and automation.

Mcp interface and front end access to the same tasks, lists. Bots manage via the mcp, user manage it via the front end.

screen shot

MCP Server & API

The backend exposes both a REST API (for the frontend) and an MCP server (for bots/automation). Both access the same SQLite database and task/list data.

MCP Commands (for bots/automation)

The following MCP commands are available (see server/server.ts):

  • test-connection — Test the connection to the database
  • get-users — Get all users
  • get-todo-lists — Get all todo lists
  • get-tasks — Get all tasks
  • create-todo-list — Create a new todo list (input: name)
  • create-task — Create a new task (input: title, description, todo_list_id)
  • complete-task — Update a task's status (input: id, status)
  • delete-task — Delete a task (input: id)
  • change-task-order — Move a task to a new position or column (input: taskId, newColumnId, newPosition)
  • get-docs — Get the documentation for the server
  • change-tasks-order — Set the order and status for all tasks at once (input: toDo, inProgress, done)

REST API (for frontend)

  • /api/get-kanban-board — Get board data for the frontend
  • /api/update-task — Update a task
  • /api/create-task — Create a new task
  • /api/delete-task — Delete a task
  • /api/get-users — Get all users
  • /api/bulk-update-order — Bulk update board columns
  • /api/tasks — Get all tasks
  • /api/todo-lists — Get all todo lists
  • /api/todo-lists (POST) — Create a new todo list
  • /api/todo-lists/:id (PUT) — Update a todo list
  • /api/todo-lists/:id (DELETE) — Delete a todo list

Usage (via npx)

After publishing to npm, you can use the CLI directly:

  • Start server and frontend:
    npx mcptodo
  • Reset the database:
    npx mcptodo reset
  • Initialize project files:
    npx mcptodo init

Development

1. Clone the repository

git clone <repo-url>
cd mcptodo

2. Install dependencies

npm install

3. Dev commands

  • Build everything:
    npm run build
  • Build only the CLI:
    npm run build:cli
  • Build only the backend:
    npm run build:backend
  • Build only the frontend:
    npm run build:frontend
  • Clean build output:
    npm run clean

Project Structure

  • Frontend: src/ (React, Vite)
  • Backend: server/ (Express, SQLite, MCP)
  • CLI: cli.ts (entry point)

Publishing to npm

  1. Update package.json (set name, version, bin, etc.)
  2. Build the project: npm run build
  3. Login: npm login
  4. Publish: npm publish --access public

License

MIT

Warning

Very alpha, use at your own risk