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

@yesdidit/mcp

v0.7.0

Published

Yes! Did It — MCP server for Claude Code todo management

Downloads

73

Readme

yesdidit-mcp

MCP (Model Context Protocol) server for Yes! Did It — lets Claude manage your todos via natural language.

Tools

| Tool | Description | |------|-------------| | add_todo | Create a new todo (auto-captures git context; optional issue, pr params) | | list_todos | List todos with optional filters (branch, repo, tags, issue, pr) | | list_branch_todos | List todos for the current git branch | | standup | Standup report: recent completions + in-progress (optional since param) | | sweep_todos | Find stale todos on deleted/merged branches | | complete_todo | Mark a todo as done | | delete_todo | Delete a todo | | update_todo | Update a todo's text, due date, or tags |

Setup

Claude Desktop / claude.ai (OAuth connector)

Add as a custom connector in Claude Desktop settings:

  • URL: https://api.yesdidit.com/mcp
  • Client ID: anthropic-connectors
  • Client Secret: (leave blank)

OAuth authentication is handled automatically — you'll be prompted to sign in with Google on first use.

Claude Code (HTTP, with API key)

No local install. Create an API key with ydi keys create --name "claude-code", then:

claude mcp add --transport http yesdidit https://api.yesdidit.com/mcp \
  --header "Authorization: ApiKey ydi_live_..."

Claude Code / IDE extensions (stdio)

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "yesdidit": {
      "command": "node",
      "args": ["/path/to/packages/mcp/dist/index.js"]
    }
  }
}

Uses the same credentials as the ydi CLI, stored at ~/.config/yesdidit/config.json. Run ydi login first.

API key (any HTTP client)

You can also use an API key instead of OAuth. Note the ApiKey scheme — Bearer is reserved for JWTs:

curl -X POST https://api.yesdidit.com/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Authorization: ApiKey ydi_live_..." \
  -d '{"jsonrpc":"2.0","method":"tools/list","id":1}'

Create API keys with ydi keys create.

Privacy

This MCP server accesses only your YesDidIt todo data:

  • Reads/writes: Todo text, status, due dates, tags, git context (branch, commit, repo)
  • Does NOT access: AI conversation history, uploaded files, other MCP server data, or any data outside your YesDidIt account
  • Authentication: OAuth 2.0 with PKCE (HTTP mode) or local config file (stdio mode). Credentials are never logged or transmitted to third parties.
  • No conversation logging: The MCP server does not store, log, or transmit any part of your Claude conversations.

Full privacy policy: https://yesdidit.com/privacy Terms of service: https://yesdidit.com/terms Security vulnerabilities: Report via GitHub Security Advisories