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

@vertiman/marky

v0.1.4

Published

Stdio bridge to the Marky MCP HTTP endpoint

Readme

@vertiman/marky

Stdio bridge to the Marky MCP HTTP endpoint. Forwards JSON-RPC from stdin to Marky's HTTPS /mcp endpoint and writes the response to stdout, so any MCP client that speaks stdio can talk to Marky.

Use with Claude Code

claude mcp add marky -- npx -y @vertiman/marky \
  --env MARKY_ENDPOINT=https://mcpdocs.getlegio.com/mcp \
  --env MARKY_TOKEN=mk_live_...your_token...

Mint a token at https://mcpdocs.getlegio.com/settings.

Environment

| Var | Default | Description | |---|---|---| | MARKY_ENDPOINT | https://mcpdocs.getlegio.com/mcp | HTTP MCP endpoint URL. | | MARKY_TOKEN | — (required) | Bearer token, e.g. mk_live_.... |

Project detection

On each request the shim detects a project slug from the current working directory (basename of git remote get-url origin, or basename $PWD as a fallback) and sends it on the x-marky-project header. This lets you pin the active project per repo without re-configuring the MCP server.

How it works

Reads JSON-RPC messages from stdin → HTTPS POST to MARKY_ENDPOINT with Authorization: Bearer $MARKY_TOKEN → response echoed to stdout. No state between requests; the shim is a pure forwarder.

Input framing is auto-detected on the first byte: clients that send LSP-style Content-Length: headers (e.g. Codex) are handled transparently, and clients that send newline-delimited JSON (the MCP spec stdio default, e.g. Claude Code) work too. Output mirrors whichever framing the client used.