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

wpaste-mcp

v0.1.0

Published

MCP server for Lobster (龙虾笔记) — expose your wpaste knowledge base to Cursor, Claude Desktop, Cline, Continue, Goose, and any other MCP client.

Readme

wpaste-mcp

MCP server for Lobster (龙虾笔记) — exposes your wpaste.io personal knowledge base as tools usable from any Model Context Protocol client.

Works in: Cursor, Claude Desktop, Cline, Continue, Goose, Zed, Windsurf, and any other MCP-compatible client.

Tools

| Tool | What it does | |---|---| | publish_document | Save lasting AI output (research, analyses, plans) to your KB. Private by default. | | search_documents | Full-text search your KB | | ask_kb | Question answering over your KB with citations | | get_document | Fetch full Markdown of a document by ID | | append_daily | Append a line to today's daily note (auto-titled YYYY-MM-DD) | | list_workspaces | List your workspaces | | move_to_workspace | File a document into a workspace |

Install

You need a Lobster API token — get one at https://wpaste.io/dashboard/settings. Then add the server to your MCP client.

Cursor

~/.cursor/mcp.json:

{
  "mcpServers": {
    "wpaste": {
      "command": "npx",
      "args": ["-y", "wpaste-mcp"],
      "env": {
        "WPASTE_TOKEN": "wpaste_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Then in Cursor settings → MCP, enable wpaste. Use it in chat: "search my KB for React Server Components notes".

Claude Desktop

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

{
  "mcpServers": {
    "wpaste": {
      "command": "npx",
      "args": ["-y", "wpaste-mcp"],
      "env": {
        "WPASTE_TOKEN": "wpaste_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Restart Claude Desktop.

Cline (VSCode)

In VSCode settings, edit cline.mcpServers:

{
  "wpaste": {
    "command": "npx",
    "args": ["-y", "wpaste-mcp"],
    "env": { "WPASTE_TOKEN": "wpaste_xxx" }
  }
}

Continue.dev

~/.continue/config.json:

{
  "mcpServers": {
    "wpaste": {
      "command": "npx",
      "args": ["-y", "wpaste-mcp"],
      "env": { "WPASTE_TOKEN": "wpaste_xxx" }
    }
  }
}

Goose

~/.config/goose/config.yaml:

extensions:
  wpaste:
    type: stdio
    cmd: npx
    args: ["-y", "wpaste-mcp"]
    envs:
      WPASTE_TOKEN: wpaste_xxx

Environment variables

| Var | Default | Notes | |---|---|---| | WPASTE_TOKEN | (required) | Your Lobster API token (wpaste_…) | | WPASTE_SERVER | https://wpaste.io | Override for self-hosted instances | | HTTPS_PROXY / HTTP_PROXY / ALL_PROXY | — | HTTP proxy honored for outbound calls |

Suggested system prompt

Add this to your AI's rules / system prompt to encourage knowledge-base usage:

You have access to my Lobster knowledge base via the wpaste MCP server.

  • Before writing a long analysis, call search_documents to check for prior work.
  • When you finish lasting content (research, plans, code reviews), call publish_document to save it. Default to private.
  • For short progress logs, call append_daily instead of creating a new doc.

Development

cd cli/wpaste-mcp
npm install
npm run build           # tsc → dist/
node scripts/smoke.mjs  # spawn server, list tools (no token needed)
node scripts/e2e.mjs    # call list_workspaces + search against production (uses ~/.wpaste/config.json or $WPASTE_TOKEN)

License

MIT