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

dotodo-mcp

v0.2.1

Published

MCP server for dotodo — manage your todos from Claude, Claude Code, and ChatGPT

Readme

dotodo MCP Server

Manage your todos from Claude and ChatGPT.

dotodo is a free todo app with soft deadlines. This MCP server lets you add, update, complete, and review todos directly from your AI assistant — no app switching needed.

Quick Start

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "dotodo": {
      "command": "npx",
      "args": ["-y", "dotodo-mcp@latest"],
      "env": {
        "DOTODO_API_URL": "https://api.dotodo.co",
        "DOTODO_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add dotodo \
  -e DOTODO_API_URL=https://api.dotodo.co \
  -e DOTODO_API_KEY=your-api-key \
  -- npx -y dotodo-mcp@latest

Get Your API Key

  1. Sign in at dotodo.co
  2. Go to Profile → API Keys
  3. Create a new key and copy it

Tools

| Tool | Description | |------|-------------| | add_todo | Create a todo with optional deadline, priority, project | | add_todos | Batch create up to 50 todos at once | | list_todos | List and filter todos by date, week, month, quarter, status | | complete_todo | Toggle todo completion | | complete_todos | Batch toggle up to 100 todos | | update_todo | Update title, deadline, priority, status | | delete_todo | Soft-delete a todo | | delete_todos | Batch delete up to 100 todos | | get_project_todos | Get all todos for a specific project | | list_projects | List all projects | | create_project | Create a new project | | add_tag | Create a tag | | list_tags | List all tags |

Usage Examples

You: "What do I need to finish this week?"
AI:  5 todos this week (W12):
     • Update and submit resume
     • Prepare team meeting slides
     • Book an oil change
     • Call parents
     • Drop off comforter at dry cleaner
You: "Add a follow-up with the client for next month"
AI:  Created todo: "Follow-up with client" (due: April 2026)
You: "Mark the resume task as done"
AI:  Completed: "Update and submit resume"

Soft Deadlines

dotodo supports flexible time-based deadlines:

  • Date — specific day (2026-03-19)
  • Week — this week, next week (W12)
  • Month — this month, next month
  • Quarter — Q1, Q2, Q3, Q4
  • Year — annual goals
  • Bucket list — no deadline, someday items

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | DOTODO_API_URL | No | API server URL (default: https://api.dotodo.co) | | DOTODO_API_KEY | Yes | Your API key from dotodo.co |

Requirements

Free Plan Limits

  • 1,000 todos
  • 20 projects
  • 1 API key
  • 100 AI calls / day

Need more? Upgrade to Pro for unlimited todos and AI calls.

Links

License

MIT