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

@heyoden/mcp

v1.0.3

Published

Model Context Protocol server for Oden — connect Claude Code, Cursor, or any MCP client to your AI todo & calendar assistant.

Readme

@heyoden/mcp

A Model Context Protocol server for Oden — the AI todo and calendar assistant. Connect it to Claude Code, Cursor, or any MCP client and your AI assistant can read, create, complete, and search your todos directly from chat.

What you get

17 tools across todos, tags, reminders, and your profile. The full list is at the bottom of this file. The short version: anything you can do in the Oden app, you can ask your AI assistant to do via MCP.

Setup

You need an Oden account on the Trial, Pro, or Max plan to use the MCP. Free accounts (post-trial) get a 402.

1. Generate an API key. Open Oden on iPhone or Mac. Settings → Developer → New key. Give it a label (e.g. claude-code-laptop) and save the token shown on screen. You only see it once.

2. Add it to your MCP client config. For Claude Code, edit ~/.claude/.mcp.json:

{
  "mcpServers": {
    "oden": {
      "command": "npx",
      "args": ["-y", "@heyoden/mcp"],
      "env": {
        "ODEN_API_KEY": "odn_live_..."
      }
    }
  }
}

Replace odn_live_... with the key you copied. Restart Claude Code so the new config is picked up.

3. Try it. Ask your AI assistant: "What are my top todos for today?" It should call oden_suggest_todos and read your data back.

Environment

| Variable | Required | Notes | |---|---|---| | ODEN_API_KEY | yes | The odn_live_* token from Settings → Developer | | ODEN_API_URL | no | Override the API base. Default: https://api.heyoden.com/v1 | | ODEN_AUTH_TOKEN | deprecated | Legacy long-lived JWT. Still accepted as fallback. Migrate to ODEN_API_KEY. |

Security

The token grants full read/write access to your Oden account: todos, tags, reminders, stats, profile, billing status. Treat it like a password.

  • Don't commit it to git. Add .mcp.json to .gitignore if your project tracks it.
  • Don't paste it into chat with anyone (including AI assistants).
  • Lost it? Just revoke from Settings → Developer and create a new one. Old tokens stop working immediately.
  • API keys can't call the chat endpoint, can't manage other API keys, and can't bypass your subscription's daily AI quota. Worst case from a leak: the attacker reads/writes your todos until you revoke.

Available tools

| Tool | What it does | |---|---| | oden_list_todos | List todos with optional status/tag filters | | oden_create_todo | Create a todo (title, description, tags, priority, due date, reminder) | | oden_update_todo | Update a todo by UUID | | oden_complete_todo | Mark a todo as done | | oden_delete_todo | Delete a todo (two-step confirm) | | oden_suggest_todos | AI-curated focus list for today | | oden_search_todos | Full-text search across title + description + tags | | oden_reparent_todo | Move a todo under a parent or detach it | | oden_list_tags | List your tags with colors | | oden_create_tag | Create a tag with a label and color | | oden_list_reminders | List pending reminders (legacy — prefer todo remindAt) | | oden_create_reminder | Create a standalone reminder (legacy) | | oden_snooze_reminder | Snooze a reminder by N minutes (legacy) | | oden_delete_reminder | Delete a reminder (legacy) | | oden_get_stats | Productivity stats: completions, streaks, most productive day | | oden_get_profile | Your name, email, plan | | oden_get_billing | Subscription status, trial end, plan |

Plans & limits

  • Trial (10 days, free): full MCP access.
  • Pro ($9.99/mo): full MCP access.
  • Max ($17.99/mo): full MCP access.

The MCP itself does not call AI providers, so it does not consume your daily AI quota (Pro 25/day, Max 75/day). Those limits only apply to the in-app chat.

Issues, feature requests

heyoden.com/support

License

MIT