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

@taujs/mcp

v0.1.0

Published

τjs [ taujs ] MCP adapter — a thin file reader over the introspection substrate

Readme

@taujs/mcp

MCP server for τjs apps: gives AI agents ground truth about your routes, services, and live request behaviour - read from files the dev server already emits, never guessed from source.

What it is

A filesystem-only stdio MCP adapter. A τjs dev boot emits an introspection substrate under node_modules/.taujs/ - the request graph (every route's contract), request traces (per-request records with timings, service calls, and outcomes), a redacted logs annex, and observed route → service edges. taujs-mcp reads those files and serves them as query-shaped MCP tools. It opens no network connections and loads no config.

Setup

New apps scaffolded with @taujs/create-taujs are wired automatically. For an existing app:

pnpm add -D @taujs/mcp
// .mcp.json (project root)
{
  "mcpServers": {
    "taujs": { "command": "pnpm", "args": ["exec", "taujs-mcp"] },
  },
}

(npx --no-install taujs-mcp for npm, yarn exec taujs-mcp for yarn - always the project's pinned version, never registry-latest.)

Run pnpm dev once so the substrate exists, then point your MCP client at the project.

Tools

| Tool | Answers | | ------------------------- | ------------------------------------------------------------------ | | taujs_overview | Apps, routes, services, warnings, fallthrough posture - start here | | taujs_list_routes | Declared routes with effective render/hydrate + data kind | | taujs_get_route | One route's full graph row + its warnings | | taujs_who_calls_service | Route → service edges, labelled declared vs observed | | taujs_explain_route | Composed explanation: render, data edge, schema flags, middleware | | taujs_get_recent_traces | Recent request traces (live dev boot only) | | taujs_get_trace | One trace: timeline, service calls, hydration, error | | taujs_get_trace_logs | That trace's log lines, on demand (warn+ default) | | taujs_doctor | Bounded health report: warnings, defaulted renders, failed traces |

Plus three skills as MCP prompts (broken-route diagnosis, hydration-mismatch triage, add-a-streamed-route).

Semantics you can rely on

  • Staleness is stated: answers from files without a live boot cite source + emittedAt ("as of the last dev boot at …").
  • Runtime tools refuse without a live boot - structural tools keep working.
  • Sources are labelled: declared (from config) vs observed ("seen in dev traffic" - absence means not exercised yet, never "no relationship").
  • Version-skew safe: a graph from a newer @taujs/server degrades with an explicit upgrade message, never a misread.
  • Field values in responses are your application's data - treated as untrusted, capped, and never instructions. Trace URLs never include query values.

Introspection exists only in dev (structurally - production builds never load it), and this adapter needs no token: the files are its credential.

License

MIT © John Smith | Aoede. Attribution appreciated.