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

koon-mcp

v0.7.0

Published

MCP server that fetches web content using koonjs browser impersonation — bypasses Cloudflare, Akamai, and other bot detection

Readme

koon-mcp

MCP server for Claude Code that fetches web content using real browser TLS/HTTP2 fingerprints. Bypasses Cloudflare, Akamai, and other bot detection systems that block standard HTTP clients.

Built on koon — a browser impersonation library using Rust + BoringSSL.

Why?

Standard fetch, curl, or built-in web tools get blocked by bot detection on many popular websites (403 Forbidden, CAPTCHAs, empty responses). koon-mcp solves this by making requests that are indistinguishable from a real browser at the TLS and HTTP/2 protocol level.

| Site | Category | Standard fetch | koon-mcp | |---|---|---|---| | medium.com | Articles / Blog | 403 | Full content | | bloomberg.com | Financial news | 403 | Full content | | ticketmaster.com | Events / Tickets | 403 | Full content | | zillow.com | Real estate | 403 | Full content | | glassdoor.com | Jobs / Salaries | 403 | Full content | | stockx.com | E-Commerce | 403 | Full content | | tripadvisor.com | Travel / Reviews | 403 | Full content | | bestbuy.com | Electronics | Timeout | Full content | | nike.com | E-Commerce | JS skeleton only | Full content | | linkedin.com | Social / Jobs | Restricted | Full content |

Features

  • Browser impersonation — Chrome, Firefox, Safari, Edge fingerprints (175+ profiles)
  • HTML → Markdown — Clean extraction using Readability + Turndown (no images, scripts, iframes)
  • JSON handling — Auto-formats JSON responses as fenced code blocks
  • 15-minute cache — Self-cleaning in-memory cache to avoid redundant requests
  • Content truncation — Large pages capped at 100k characters to stay within context limits
  • Auto HTTPS upgradehttp:// URLs are automatically upgraded to https://

Install as Claude Code Plugin

claude plugin install koon-fetch

Or add the marketplace first if not yet available in the official directory:

claude plugin marketplace add scrape-hub/koon-mcp
claude plugin install koon-fetch@scrape-hub/koon-mcp

Manual Setup

Add to your Claude Code MCP config (~/.claude/settings.json or project .mcp.json):

{
  "mcpServers": {
    "koon-fetch": {
      "command": "npx",
      "args": ["-y", "koon-mcp"]
    }
  }
}

Tool

koon_fetch

Fetches a URL and returns the content as markdown.

Parameters:

| Name | Type | Required | Description | |---|---|---|---| | url | string | yes | The URL to fetch | | prompt | string | no | Hint for what information to extract |

Example usage in Claude Code:

"Fetch the pricing page from example.com"

Claude will call koon_fetch with url: "https://example.com/pricing" and return clean markdown content.

How It Works

  1. koonjs opens a TLS connection with a real browser fingerprint (JA3, AEAD, ALPN, HTTP/2 frames)
  2. The response HTML is parsed with JSDOM
  3. Readability extracts the main article content (falls back to full body)
  4. Turndown converts HTML to clean markdown
  5. Result is cached for 15 minutes

Requirements

  • Node.js 18+
  • koon native binaries are bundled with koonjs (no extra install needed)

License

MIT