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

@rac.so/clip-mcp

v0.2.1

Published

MCP (Model Context Protocol) server for clip — upload, list, fetch, and delete clip.rac.so clips as native LLM tools.

Readme

@rac.so/clip-mcp

Model Context Protocol server for clip — an ephemeral URL service. Adds clip_upload, clip_list, clip_get, and clip_delete as native tools in any MCP-speaking LLM client (Claude Desktop, Claude Code, Cursor, Zed, etc.).

This is a thin local stdio server. It just forwards typed tool calls to clip's HTTP API. No remote endpoint, no per-user state.

Install

You need a clip API key. Mint one in 30 seconds via the device flow:

# 1. Ask clip for a code
curl -sX POST https://clip.rac.so/auth/device \
  -H 'Content-Type: application/json' \
  -d '{"agent_label":"claude-desktop"}'
# → { "user_code": "ABCD-EFGH", "verification_uri": "...", ... }

Visit the verification_uri, type the user_code, sign in with GitHub or Google, then poll the token endpoint until you get an access_token. (Full walkthrough: clip.rac.so/api#device-flow.)

Then add this block to your MCP-client config:

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "clip": {
      "command": "npx",
      "args":    ["-y", "@rac.so/clip-mcp"],
      "env":     { "CLIP_API_KEY": "clip_..." }
    }
  }
}

Restart Claude Desktop. Ask it to "share this snippet with clip" and watch.

Other clients

Any MCP client that runs stdio servers takes the same command + args + env. Adapt to your client's config format.

Tools

| Tool | What it does | |---------------|-----------------------------------------------------------------| | clip_upload | Upload content, return a short URL. Extension-first: set extension (e.g. md, json, png; bin/dat/raw for binary). content_type is an escape hatch for unmapped MIMEs; ttl_minutes sets lifetime. | | clip_list | List your active clips, newest first. | | clip_get | Fetch a clip body by id or URL. | | clip_delete | Delete a clip you own. |

Schemas are self-documenting via the standard MCP tools/list request — your client surfaces them automatically.

Configuration

| Env var | Required | Purpose | |------------------|----------|------------------------------------------| | CLIP_API_KEY | yes | Bearer token (mint via device flow). | | CLIP_BASE_URL | no | Override base URL (default https://clip.rac.so). Useful for self-hosted instances or local dev. |

Develop

npm install
npm run build
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | CLIP_API_KEY=clip_... node dist/index.js

License

MIT.