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

@usecreable/mcp

v0.1.0

Published

Thin stdio↔HTTP bridge connecting stdio MCP clients (e.g. Claude Desktop) to the hosted usecreable MCP server.

Readme

usecreable MCP

npm version license

Connect Claude Desktop — or any stdio-only MCP client — to the hosted usecreable MCP server with a single command.

usecreable already runs a hosted MCP server at mcp.usecreable.com. Clients that speak remote MCP natively (Claude Code CLI, Cursor) connect to it directly. Claude Desktop reads only stdio servers, so this package bridges the gap: it's a tiny stdio↔HTTP proxy that forwards your MCP session to the hosted server and injects your API key.

It does not reimplement any tools. The full toolset lives on the hosted server — this package is purely a transport bridge, so it never goes out of date when tools change.

Get an API key

Create a key in your usecreable dashboard under Settings → API & integrations. Keep it secret; you can revoke and rotate it at any time.

Claude Desktop

Open Claude Desktop → SettingsDeveloperEdit Config, and add a usecreable entry:

{
  "mcpServers": {
    "usecreable": {
      "command": "npx",
      "args": ["-y", "usecreable-mcp"],
      "env": {
        "USECREABLE_API_KEY": "your-key-here"
      }
    }
  }
}

Save the file and restart Claude Desktop. The usecreable tools will appear in the client.

Already on Claude Code or Cursor?

You don't need this package — those clients connect to the hosted server directly:

Claude Code:

claude mcp add usecreable --transport http https://mcp.usecreable.com/v1 \
  --header "Authorization: Bearer your-key-here"

Cursor (Settings → MCP → Add new global MCP server):

{
  "mcpServers": {
    "usecreable": {
      "url": "https://mcp.usecreable.com/v1",
      "headers": { "Authorization": "Bearer your-key-here" }
    }
  }
}

Configuration

| Source | Purpose | | --- | --- | | USECREABLE_API_KEY (env) | Your API key. Required. | | --key <value> (arg) | Your API key. Takes precedence over the env var. |

The endpoint is baked in (https://mcp.usecreable.com/v1); no URL configuration is needed.

Troubleshooting

  • "invalid or expired usecreable API key" — the hosted server rejected your key (HTTP 401). Create a fresh one in Settings → API & integrations and update your config.
  • "No usecreable API key found" — set USECREABLE_API_KEY in the env block (or pass --key), then restart the client.
  • Tools don't appear after editing the config — fully quit and reopen Claude Desktop. MCP servers are launched at startup and don't hot-reload.

License

MIT © usecreable