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

@tokiui/mcp

v0.1.0

Published

MCP server exposing the tokiui component + frame registry to AI assistants

Readme

@tokiui/mcp

An MCP server that exposes the tokiui component + frame registry to AI assistants (Claude Code, Cursor, and any MCP client). Your assistant can browse the catalog, read component source, and get the exact add command — so it can build with tokiui without guessing.

Tools

| Tool | What it does | |---|---| | list_components | List every component (name, label, description). Optional query filter. | | list_frames | List every frame — multi-file page compositions that install a ready route. | | get_component | A component's metadata, install command, npm deps, and full source. | | get_frame | A frame's metadata, install command, ready route, and full source. | | search | Search components + frames by name, label, or description. |

Use it

The server speaks MCP over stdio — point your client's config at it with npx.

Claude Code (.mcp.json or claude mcp add):

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

Cursor (.cursor/mcp.json): the same command / args shape.

Then ask your assistant things like "list the tokiui components", "show me the tokiui table component", or "add the tokiui dashboard frame" — it will call these tools and get real source + the correct npx @tokiui/cli@latest add … command.

Configuration

  • TOKIUI_REGISTRY_REF — the git ref the registry is read from. Defaults to main (the current catalog). Set it to a cli-v* tag to pin to a specific release.

How it works

Read-only. The server fetches the registry (component/frame manifests + source) over HTTPS from the tokiui GitHub repository — the same registry the CLI installs from — restricted to that single origin. It never writes to your project; it hands your assistant the source and the add command, and @tokiui/cli does the installing.