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

@withfudge/design

v2.0.5

Published

Installer and agent guidance for the hosted Fudge design-corpus MCP server.

Readme

Fudge agent setup

@withfudge/design configures supported agent clients to use Fudge's hosted MCP server and installs the small agent-guidance pack. It does not run a local MCP server or carry a local copy of the corpus.

Hosted access

The MCP endpoint is:

https://api.withfudge.com/mcp

The hosted MCP uses standard OAuth and requires an active Standard, Pro, or Studio subscription. Your MCP client opens the authorization page on design.withfudge.com, where an existing Fudge browser session is reused. There is no CLI login step and the installer does not store a token.

Install

npx -y @withfudge/design@latest install --client codex

Install for detected supported clients:

npx -y @withfudge/design@latest install --all

Use --local to write the selected client's project configuration instead of its global configuration. This changes configuration scope only; it still points to the hosted endpoint.

Some clients do not support remote MCP servers through their configuration file. For those clients the installer reports the client's native connector setup path instead of installing a local proxy.

The equivalent generic MCP configuration is:

{
  "fudge": {
    "type": "http",
    "url": "https://api.withfudge.com/mcp"
  }
}

Do not add an authorization header, cookie, local command, or environment secret to this configuration. The MCP client discovers OAuth from the hosted endpoint and manages its own tokens.

MCP contract

The hosted server exposes one corpus data tool:

  • query_fudge using contract mnestic-query-v1.

It also exposes the live resource fudge://agent/guide.md. Agents read that resource, introspect the current Mnestic schema with CozoDB's ::relations and ::columns queries, and then compose bounded CozoScript themselves. The server does not offer named lookup, inspection, taxonomy, similarity, export, or presentation convenience tools.

query_fudge accepts:

{
  "contract_version": "mnestic-query-v1",
  "script": "::relations",
  "parameters": {},
  "expected_generation": 11,
  "max_rows": 500,
  "max_bytes": 524288
}

Only contract_version and script are required. CozoScript is passed through as opaque text. The hosted boundary adds typed parameters, result bounds, a timeout, and generation fencing; it does not parse or rewrite queries.

Mnestic's service token remains server-side. OAuth credentials terminate at the Fudge Worker and are never forwarded to Mnestic.

Skills

The default skill pack contains:

  • fudge-search
  • fudge-export
  • fudge-design-md

Install only the skills with:

npx -y @withfudge/design@latest install --skill-only

The skills provide task guidance; they do not implement a second data-access path. The live MCP guide and current Mnestic introspection remain authoritative.

Doctor

npx -y @withfudge/design@latest doctor --client codex

Doctor validates the hosted OAuth challenge and discovery chain plus the installed skill pack and client configuration. Tool and guide access are verified by the MCP client after browser authorization; fudge login is not part of that flow.

Development

Run the Worker and Mnestic locally, then point an MCP client directly at:

http://127.0.0.1:8789/mcp

This is still Streamable HTTP. There is no supported fudge mcp stdio command and no local CLI query relay.