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

@hunt-labs/bytekit-mcp

v0.1.3

Published

ByteKit MCP server — exposes ByteKit web-data tools (scrape, screenshot, search, docs) to AI agents over the Model Context Protocol, hosted or as a local stdio server.

Readme

@hunt-labs/bytekit-mcp

The ByteKit MCP server exposes scraping, search, screenshots, and account lookups as Model Context Protocol tools. Your agent calls scrape_url or screenshot_url the same way it calls any other tool — no wrapper to write, no headless browser to manage.

There are two ways to connect: a hosted HTTP endpoint (nothing to install) and a local stdio server (npx @hunt-labs/bytekit-mcp).

Authentication

Both paths authenticate with a ByteKit API key. Sign up at app.bytekit.com and create a key (prefixed sk_live_). The local server reads it from the BYTEKIT_API_KEY environment variable (or the --api-key flag); the hosted endpoint takes it as a bearer token.

Option 1 — Hosted HTTP (no install)

Point any MCP client that speaks the Streamable HTTP transport at:

https://api.bytekit.com/mcp

Send your API key as a bearer token. Example client config (Claude Desktop, Cursor, and most hosts accept this shape):

{
  "mcpServers": {
    "bytekit": {
      "url": "https://api.bytekit.com/mcp",
      "headers": {
        "Authorization": "Bearer $BYTEKIT_API_KEY"
      }
    }
  }
}

Option 2 — Local stdio (npx)

Run the server as a local subprocess over stdio. Nothing to install globally — npx fetches it on demand:

npx @hunt-labs/bytekit-mcp --api-key $BYTEKIT_API_KEY

Or set the key in your environment and omit the flag:

export BYTEKIT_API_KEY=sk_live_xxx
npx @hunt-labs/bytekit-mcp

Client config for a stdio server (claude_desktop_config.json and equivalents):

{
  "mcpServers": {
    "bytekit": {
      "command": "npx",
      "args": ["-y", "@hunt-labs/bytekit-mcp"],
      "env": {
        "BYTEKIT_API_KEY": "sk_live_xxx"
      }
    }
  }
}

CLI flags

| Flag | Purpose | | ------------------ | --------------------------------------------------------------------------------------- | | --api-key <key> | ByteKit API key. | | --base-url <url> | API base URL (default https://api.bytekit.com) — point at staging or a local gateway. | | --verbose | Log requests to stderr. | | --help | Show usage. |

API-key resolution order

The local server resolves the key in this order, so a legacy setup keeps working:

  1. --api-key <key> flag
  2. BYTEKIT_API_KEY environment variable
  3. RAPIDCRAWL_API_KEY environment variable (legacy fallback)

Tool inventory

| Tool | What it does | | ---------------- | -------------------------------------------------------------- | | scrape_url | Fetch a URL and return HTML, clean markdown, links, or images. | | web-search | Run a web search and return ranked organic results. | | screenshot_url | Capture a screenshot of a page (desktop/mobile, PNG/JPEG). | | get_result | Fetch a previously created screenshot by id. | | get_account | Return account details, plan, and current usage/quota. | | list_docs | List every page in the bundled ByteKit documentation. | | search_docs | Search the bundled documentation. | | get_doc | Fetch the full markdown of one documentation page. |

The server also exposes resources (bytekit://account, bytekit://screenshot/{id}) and prompts (summarize_webpage, extract_structured_data, research_topic) that MCP hosts can surface directly.

Documentation

Full MCP guide: bytekit.com/docs/mcp.

License

MIT — see LICENSE.