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

@tellie/mcp

v0.4.3

Published

MCP server for Tellie: send text to the silent second screen in the Mac notch.

Readme

@tellie/mcp (spike)

An MCP server that lets AI clients (Claude Desktop, etc.) push text to Tellie's silent second screen in the Mac notch. It wraps the public tellie:// URL scheme (documented in Tellie's INTEGRATIONS.md), so it needs no private API and works against any installed Tellie build.

Status: working (pre-publish). Verified end to end via test-client.mjs. Playback verbs and npm publishing come next; see ../TELLIE-FOR-DEVS-SPEC.md.

Tools

  • update_status(text, source?, icon?, attention?) — set/replace a glanceable status line in the notch (build step, tokens, a timer, anything). Replaces the previous line from the same source; never steals focus. attention: true is the "look up / needs you" cue. icon is an SF Symbol name (hammer, checkmark.circle, bolt) or an emoji.
  • flash_status(text, source?, icon?) — a brief status that auto-clears (one-off pings / milestones).
  • clear_notch(source?) — remove one source's line (sign off) with source, or clear everything without it.
  • send_to_tellie(text, source?) — load readable content as a teleprompter script (click the notch to read it full).

Run / test locally

cd tellie-dev/mcp
npm install
node test-client.mjs   # lists the tool, calls it; Tellie should show the strip

(Tellie must be installed and running.)

Wire into Claude Desktop

Add this to ~/Library/Application Support/Claude/claude_desktop_config.json (create the file if it doesn't exist), then fully quit and reopen Claude Desktop:

{
  "mcpServers": {
    "tellie": {
      "command": "npx",
      "args": ["-y", "@tellie/mcp"]
    }
  }
}

That uses the published package; npm fetches and runs it for you, no clone needed.

Prefer to run from a local clone? Point command at node and args at the absolute path to mcp/index.mjs:

{
  "mcpServers": {
    "tellie": {
      "command": "node",
      "args": ["/absolute/path/to/tellie-dev/mcp/index.mjs"]
    }
  }
}

Then ask Claude, in Claude Desktop: "Send 'testing one two three' to Tellie." It should call send_to_tellie and the text should appear in your notch.

Once published, this becomes npx -y @tellie/mcp instead of a hardcoded path, so users won't need a local checkout.