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

@fabrica.work/cli

v1.0.14

Published

Fabrica MCP CLI

Downloads

14

Readme

Fabrica MCP Stdio Bridge Server

Description

This is a bridge for clients like Claude Desktop, Cursor, and Windsurf that do not support yet the new MCP HTTP Streamable transport used by the Fabrica gateway. It starts shim MCP server that uses stdio transport on the local host and proxies the request to Fabrica's gateway over HTTP.

Installation

pre-requisite

Get your unique Toolbox ID (utbid) from Fabrica's gateway UI.

Install for Claude

Open a terminal and run:

npx -y @fabrica.work/cli@latest cli install claude <utbid>

This should add an entry to Claude's MCP config under:

~/Library/Application Support/Claude/claude_desktop_config.json

Make sure to restart the Claude desktop app for the changes to take effect.

Install for Cursor

Open a terminal and run:

npx -y @fabrica.work/cli@latest cli install cursor <utbid>

This should add an entry to Cursor's MCP config under:

~/.cursor/mcp.json

Make sure to restart the Cursor desktop app for the changes to take effect.

Install for Windsurf

Open a terminal and run:

npx -y @fabrica.work/cli@latest cli install windsurf <utbid>

This should add an entry to Windsurf's MCP config under:

~/.codeium/windsurf/mcp_config.json

Make sure to restart the Windsurf desktop app for the changes to take effect.

Install for VSCode

Follow instructions at: https://code.visualstudio.com/docs/copilot/chat/mcp-servers The command to run to start the server is:

npx -y @fabrica.work/cli@latest server <utbid>>

Note: if installed as a global server (vs workspace), the settings are under

~/Library/Application Support/Code/User/settings.json

TODO

Development

Running from local sources

Compile:

pnpm run build

To run the server:

npm exec fabrica server

To run the installation

npm exec fabrica cli install claude <utbid>

To run under the MCP inspector, use the following command:

npx -y @modelcontextprotocol/inspector npx @fabrica.work/cli@latest server <utbid>

Replace <utbid> with the appropriate identifier for your use case.

Environment variables

FABRICA_GATEWAY_URL Set to something like http://localhost:3000/api/mcp to use a local gateway server during development.

Publishing the npm package

Increment the version in package.json

pnpm publish

Troubleshooting

Logs

Check logs for troubleshooting under

  • Claude:
/Users/<username>/Library/Logs/Claude
  • Cursor TBD
  • Windsurf TBD

General

Refer to https://modelcontextprotocol.io/docs/tools/debugging

Contributing

If you'd like to contribute to this project, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Commit your changes and push them to your fork.
  4. Submit a pull request for review.

License

This project is licensed under the MIT License.

Additional Resources