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

@planit-lawbster/lawbster-mcp

v0.1.5

Published

Local MCP bridge for Lawbster — verified, citable German & EU law for any MCP-capable AI assistant. Forwards stdio MCP traffic to https://lawbster.planitprima.com/mcp.

Readme

@planit-lawbster/lawbster-mcp

Local MCP bridge for Lawbster — verified, citable German & EU law for any MCP-capable AI assistant.

This package is a thin stdio↔HTTPS bridge. It runs on your machine, exposes Lawbster as a local stdio MCP server to your client, and forwards every JSON-RPC frame to the hosted endpoint at https://lawbster.planitprima.com/mcp with your API key. Useful for clients that don't yet support remote HTTP MCP servers natively.

Most modern clients (Claude Desktop, Cursor, ChatGPT, Claude.ai, Copilot Studio, VS Code) talk Streamable HTTP MCP directly and don't need this wrapper — point them at https://lawbster.planitprima.com/mcp with a Bearer header instead. See the main README for direct-connect snippets.

Install

No global install required — use npx:

npx -y @planit-lawbster/lawbster-mcp setup --client claude

Supported --client values: claude · cursor · vscode · windsurf

The setup command writes a properly-formatted MCP server entry into the right config file for the chosen client and prints the path it touched.

You'll be prompted for an API key — get one (14-day free trial, no credit card) at lawbster.planitprima.com. Or pass it explicitly:

npx -y @planit-lawbster/lawbster-mcp setup --client cursor --api-key sk-legal-...
# or via env:
LAWBSTER_API_KEY=sk-legal-... npx -y @planit-lawbster/lawbster-mcp setup --client cursor

Run as a server

The default subcommand (serve) is what MCP clients invoke when they spawn this binary:

LAWBSTER_API_KEY=sk-legal-... npx -y @planit-lawbster/lawbster-mcp
# equivalent to:
LAWBSTER_API_KEY=sk-legal-... npx -y @planit-lawbster/lawbster-mcp serve

It reads JSON-RPC frames from stdin and writes them back on stdout, while shuttling everything over HTTPS to Lawbster.

Manual config (without setup)

If you'd rather edit the client config yourself, the entry looks like this:

{
  "mcpServers": {
    "lawbster": {
      "command": "npx",
      "args": ["-y", "@planit-lawbster/lawbster-mcp"],
      "env": {
        "LAWBSTER_API_KEY": "sk-legal-..."
      }
    }
  }
}

VS Code uses servers instead of mcpServers — otherwise identical.

Options

| Flag / env var | Default | Purpose | | --- | --- | --- | | --api-key / LAWBSTER_API_KEY | — (required) | Lawbster API key (sk-legal-…) | | --endpoint / LAWBSTER_MCP_URL | https://lawbster.planitprima.com/mcp | Override only for staging or self-hosted | | --scope (setup only) | global | global (user config) or project (current dir, cursor/vscode only) |

What the bridge does

The bridge does not parse, reinterpret, or rewrite MCP messages. It just connects two transports back-to-back:

client (Claude / Cursor / …)  ⇄  stdio  ⇄  this bridge  ⇄  HTTPS  ⇄  Lawbster

That means any future MCP method (tools, resources, prompts, sampling, …) works without code changes here — Lawbster server-side is the single source of truth for capabilities.

Why use this instead of direct HTTP?

  • Older client versions that only spawn stdio subprocesses
  • Air-gapped or proxied networks where you want a single outbound endpoint and per-process auth
  • Fewer config knobs for users who'd rather paste a binary name than a URL + Bearer header
  • Discovery via npm — Awesome-MCP lists, Reddit threads, and the npm registry index it as @planit-lawbster/lawbster-mcp

If your client speaks Streamable HTTP MCP natively, prefer the direct connection — one fewer process, no Node.js install required.

Source

The hosted Lawbster service itself is closed-source SaaS operated by PLANIT // TECH GmbH in Germany.