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

mekka

v0.1.3

Published

Run the agent-native backend on Bun and SQLite with one command.

Readme

Mekka CLI

Run Mekka with one command:

npx mekka

This installs or upgrades Bun automatically when necessary under npx, creates a mekka directory, installs every dependency, builds the required workspace packages, and starts the complete local backend and Studio at http://127.0.0.1:8082. Git is used for a shallow clone when available; otherwise the CLI securely downloads and extracts the GitHub main branch archive over HTTPS.

The CLI currently follows main because the only repository release tag, v0.1.0, predates the current launcher and cannot start this project correctly. Before the next CLI release is published, the source ref in bin/mekka.js must be changed to that matching immutable release tag. The official Bun installer URL intentionally remains mutable so it can install a supported Bun release.

Choose a different directory:

npx mekka my-app

Prepare the project without starting it:

npx mekka my-app --no-start

Clone the project source without installing, building, or starting it:

npx mekka my-app --no-install

The command prints the exact bun install --frozen-lockfile && bun run dev command to continue.

MCP stdio bridge

Mekka's remote MCP endpoint uses Streamable HTTP. Clients with direct Streamable HTTP support should connect to that endpoint directly and send the bearer token in the Authorization header.

For MCP clients that only launch stdio servers, use the official-SDK bridge included in this package:

MEKKA_MCP_TOKEN=your-token npx --yes mekka mcp-stdio --url http://127.0.0.1:8082/mcp

Set the token in the client process environment rather than command arguments. To use another environment variable name:

npx --yes mekka mcp-stdio --url http://127.0.0.1:8082/mcp --token-env PROJECT_MCP_TOKEN

The bridge accepts HTTPS endpoints and loopback HTTP endpoints for local development. It does not accept a --token argument, URL credentials, query parameters, or fragments.

If the endpoint returns HTTP 401, the bridge reports that the environment token is invalid, expired, or replaced and should be regenerated. It never prints the token or the upstream response body.

For npx mekka, Node.js 20 or newer is the only prerequisite. Git is optional. If Bun is missing, the CLI uses the official mutable platform installer, upgrades Bun versions older than 1.3.14, and locates the installed executable without requiring a terminal restart. If automatic installation fails, it stops before downloading anything and prints the exact manual installation command. bunx mekka inherently requires Bun.

Mekka is built in public under the Mekka Business License 2.0. The license gives qualifying small organizations room to build while preventing third parties from repackaging Mekka as a competing hosted backend or cloud service without a commercial agreement.