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

@freeconnect/quickconnect-mcp

v1.0.1

Published

MCP server for checking internet service availability at US addresses

Readme

@freeconnect/quickconnect-mcp

Check internet availability at any US address — directly inside Claude and other AI chat clients.

This is a Model Context Protocol (MCP) server that gives AI assistants the ability to look up internet service providers, plans, speeds, and pricing for any US address in real time.


How it works

Once installed, you can ask Claude things like:

"What internet options do I have at 123 Main St, Austin, TX 78701?"

Claude will call the check_serviceability tool and return a structured list of available providers, plans, download/upload speeds, and monthly pricing — no copy-pasting, no tab switching.


Requirements


Setup

1. Edit your Claude Desktop config

Mac: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the following:

{
  "mcpServers": {
    "quickconnect": {
      "command": "npx",
      "args": ["-y", "@freeconnect/quickconnect-mcp"],
      "env": {
        "QUICKCONNECT_API_KEY": "your-api-key-here"
      }
    }
  }
}

2. Restart Claude Desktop

Quit and reopen the app. You'll see a 🔨 hammer icon in the chat input — that confirms the server is connected.

3. Ask away

What internet providers are available at 25612 Thelmadale Dr, Elkhart, IN 46514?

Tool reference

check_serviceability

| Parameter | Type | Required | Description | |-----------|--------|----------|--------------------------------------| | line1 | string | ✅ | Street address (e.g. "123 Main St") | | line2 | string | — | Apt, suite, unit, etc. | | city | string | ✅ | City name | | state | string | ✅ | Two-letter state code (e.g. "TX") | | zipCode | string | ✅ | 5-digit US zip code |


Security

  • Your API key is passed via environment variable — it is never bundled in the package
  • All requests are routed through the FreeConnect API, which handles provider data
  • No personal data is stored or logged beyond standard API access logs

License

Private — © FreeConnect. All rights reserved.