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

sombra-mcp

v1.0.0

Published

Sombra MCP stdio-to-HTTP bridge. Persistent reader mode for AI.

Readme

sombra-mcp

Stdio-to-HTTP bridge for Sombra. Persistent reader mode for AI.

MCP clients that only support stdio-based servers (OpenClaw, Cursor, Windsurf, and others) can't connect directly to remote HTTP MCP servers. This package bridges that gap: it speaks stdio locally and proxies requests to https://sombra.so/mcp over Streamable HTTP.

Quick start

npx sombra-mcp --token sombra_pat_YOUR_TOKEN

Or set the token as an environment variable:

SOMBRA_TOKEN=sombra_pat_YOUR_TOKEN npx sombra-mcp

Getting a token

  1. Sign up or log in at sombra.so
  2. Go to Settings > Access Tokens
  3. Click Create Token
  4. Copy the token (starts with sombra_pat_)

Tokens authenticate your agent against your personal Sombra library. Each token has full read/write access to your account.

Configuring MCP clients

OpenClaw, Claude Desktop, Cursor, Windsurf

Add to your MCP config file (openclaw.json, claude_desktop_config.json, etc.):

{
  "mcpServers": {
    "sombra": {
      "command": "npx",
      "args": ["-y", "sombra-mcp", "--token", "sombra_pat_YOUR_TOKEN"]
    }
  }
}

Claude.ai

Add Sombra as a connector in Settings > Connectors. No bridge needed - and it will automatically pop up in Claude Code.

Claude Code

Claude Code supports remote HTTP MCP servers directly, so you don't need this bridge, or if you don't want to set it up in Claude.ai or Claude Desktop.

claude mcp add --transport http sombra https://sombra.so/mcp

What is Sombra?

Sombra is a research library that your AI agent can read from and write to through MCP. Save web pages as clean markdown, organise them into collections, distil the important parts into dense context, and search across everything.

19 tools for saving, searching, organising, and distilling web content and notes. Two prompts for context distillation. Collections exposed as MCP resources.

Your research persists between sessions. Tomorrow's conversation picks up where today's left off.

sombra.so | MCP setup docs | What is Sombra?

How it works

The bridge reads JSON-RPC messages from stdin, forwards them to https://sombra.so/mcp as HTTP POST requests with your Bearer token, and writes the responses back to stdout. It handles session management, protocol version negotiation, and streaming (SSE) responses.

No config beyond the token. No local state.

Requirements

Node.js 18 or later.

License

MIT