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

tickler-mcp

v1.1.0

Published

Persistent tickler/reminder MCP server for Claude Code and any MCP client

Readme

tickler-mcp

Persistent ticklers/reminders for Claude Code agents and any MCP client. Ticklers are stored in a local JSON file — they survive session restarts, reconnects, and machine reboots.

The core problem it solves: Claude agents run in sessions. When a session ends, in-memory state is gone. If an agent wants to follow up on something in 3 days, it has no place to put that intention. tickler-mcp is that place.

Plugin Install (Claude Code)

Two steps — add the marketplace, then install the plugin:

claude plugin marketplace add daveremy/tickler-mcp
claude plugin install tickler-mcp@tickler-mcp-plugins --scope user

Start a new Claude Code session after installing. The 6 tickler MCP tools will be available, and the bundled /tickler skill will work automatically.

Manual Install

Add to your .mcp.json (or ~/Library/Application Support/Claude/claude_desktop_config.json for Claude Desktop):

{
  "mcpServers": {
    "tickler-mcp": {
      "command": "npx",
      "args": ["-y", "-p", "tickler-mcp", "tickler-mcp"]
    }
  }
}

Or install globally:

npm install -g tickler-mcp

Tools Reference

| Tool | Description | |---|---| | tickler_create | Create a new tickler | | tickler_check | Return past-due pending ticklers (use in cron/morning review) | | tickler_list | List all ticklers, optionally filtered by status or tag | | tickler_complete | Mark a tickler done | | tickler_delete | Permanently remove a tickler | | tickler_snooze | Push due date forward by a duration: "1d", "3h", "1w", "30m" |

CLI

After installing globally or via npx:

# Check what's due
tickler check

# List all
tickler list
tickler list --status pending
tickler list --tag projects

# Create
tickler create "Follow up on invoice" --due "2026-04-01T09:00:00-07:00" --body "Invoice #1042 sent March 26"
tickler create "Weekly review" --due "2026-03-30T08:00:00-07:00" --tags "recurring,review"

# Complete
tickler complete <id>

# Delete
tickler delete <id>

# Snooze (duration string: 30m, 3h, 1d, 1w)
tickler snooze <id> 3d
tickler snooze <id> 4h

Skills

The plugin bundles a /tickler skill. After installing the plugin, use it directly:

/tickler check
/tickler create "Follow up on invoice in 3 days"

The skill orchestrates tool calls and presents results conversationally.

Storage

Default: ~/.tickler/ticklers.json

Override with an environment variable:

{
  "mcpServers": {
    "tickler-mcp": {
      "command": "npx",
      "args": ["-y", "-p", "tickler-mcp", "tickler-mcp"],
      "env": {
        "TICKLER_PATH": "/path/to/your/ticklers.json"
      }
    }
  }
}

Integration Patterns

Morning review polling

In your daily review routine, call tickler_check first. If anything is returned, surface it to the user before proceeding with the rest of the review.

Agent cron jobs

Agents running on a schedule (via CronCreate) can call tickler_check at startup. This is the primary use case — an agent sets a tickler, the session ends, and a future session picks it up automatically.

Example prompt:

At the start of each session, call tickler_check. If any past-due ticklers are found,
surface them to the user and ask what to do.

Creating follow-ups from within a session

User: "Remind me to follow up on this in a week"
Agent: [calls tickler_create with due = now + 7 days]

Snoozing instead of completing

If the user isn't ready to act on a tickler but doesn't want it cluttering the list:

Agent: [calls tickler_snooze with id: "...", duration: "3d"]

Future: Push Notifications via MCP Sampling

The MCP specification includes a Sampling capability that would allow servers to proactively notify clients — essentially push notifications from the MCP server to the agent. When client support for Sampling matures, tickler-mcp can be extended to push overdue reminders without requiring a polling step.

For now, polling via tickler_check in cron jobs and morning reviews is the reliable pattern.

Development

git clone https://github.com/daveremy/tickler-mcp.git
cd tickler-mcp
npm install
npm run build

# Test CLI
node dist/cli.js create "Test" --due "2026-04-01T00:00:00Z" --body "testing"
node dist/cli.js list

# Test MCP (stdio)
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | node dist/mcp.js

Release

npm run release patch   # 0.1.0 -> 0.1.1
npm run release minor   # 0.1.1 -> 0.2.0
npm run release major   # 0.2.0 -> 1.0.0

See CLAUDE.md for full dev guide.

License

MIT