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

clipped-mcp

v1.1.0

Published

MCP server that lets Claude read your Clipped article library — search, fetch, and browse clips saved by the Clipped browser extension.

Readme

clipped-mcp

An MCP server that lets Claude read your Clipped article library directly inside a conversation — no copy-paste, no file drag-in.

Ask Claude: "What have I read about context engineering this month?" — Claude calls search_clips, pulls your actual saved articles, and answers from them.

100% local. No network calls. No accounts. The server only reads a JSON file on your own machine.


How it works

  1. You clip articles as usual with the Clipped browser extension.
  2. When you want Claude to see your library, open the extension's Library view and click the export button (top-right, download icon). This saves Clipped/clipped-library.json to your Downloads folder.
  3. Claude Desktop runs this MCP server locally. The server reads that JSON file and exposes it as tools Claude can call.
  4. Re-export any time you want Claude to see newly clipped articles — the server always reads the file fresh, no restart needed.

There's no live sync in v1. It's export → Claude can see it, repeat when you clip more. Still miles better than manual copy-paste.


Install

Add this to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "clipped": {
      "command": "npx",
      "args": ["-y", "clipped-mcp"]
    }
  }
}

Restart Claude Desktop. You should see "clipped" listed under the connector/MCP icon in a new conversation.

Custom library location

By default the server looks for ~/Downloads/Clipped/clipped-library.json (matching where the extension saves it). If you moved the file, point the server at it explicitly:

{
  "mcpServers": {
    "clipped": {
      "command": "npx",
      "args": ["-y", "clipped-mcp"],
      "env": {
        "CLIPPED_LIBRARY_PATH": "/absolute/path/to/clipped-library.json"
      }
    }
  }
}

Tools exposed

| Tool | What it does | |---|---| | search_clips(query) | Full-text search across clip titles, projects, and body. Returns matching summaries with a snippet. | | get_clip(id) | Returns the full markdown content and metadata of one clip. | | list_projects() | Lists your project/folder names with clip counts, so a search can be scoped ("what have I clipped about Solana research?"). | | list_recent_clips(limit) | Returns the N most recently saved clips, newest first. |

Claude decides when to call these based on what you ask — you don't call them directly.


Non-goals (v1)

  • No cloud sync, no auth, no multi-device support — reads one local file.
  • Claude can only read clips through this server. It doesn't create, edit, or delete anything in your library.
  • No summarization or processing happens inside the server — it returns raw clip content and lets Claude do the reasoning. Keeps the server small and predictable.

Troubleshooting

Claude says it can't find your library / tool returns an error mentioning the file path: Open the Clipped extension's Library and click the export button. The server needs that JSON file to exist before it can read anything.

You exported but Claude still doesn't see new clips: Every tool call reads the file fresh — no caching. Confirm the export actually landed in Downloads/Clipped/clipped-library.json (or your CLIPPED_LIBRARY_PATH), and that you exported after clipping the new articles.

Server doesn't show up in Claude Desktop at all: Check your config JSON is valid (no trailing commas), and that you fully restarted Claude Desktop after editing it.


Local development

cd clipped-mcp
npm install
node index.js

The server speaks MCP over stdio — it won't print anything on its own. Test it by pointing a local Claude Desktop config at node /absolute/path/to/clipped-mcp/index.js instead of the npx command above.