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

@gatewaze/connect

v1.3.106

Published

One-command setup that connects your AI clients (Claude Desktop, Claude Code, Goose, ChatGPT) to a Gatewaze MCP server.

Readme

@gatewaze/connect

One command to connect your AI clients to a Gatewaze MCP server.

npx @gatewaze/connect

The tool finds the AI clients installed on your machine, asks which ones you want to connect, and writes the right connector entry for each. No secrets are stored: each client opens your normal sign-in page in the browser the first time you use the connector.

Usage

npx @gatewaze/connect [options]

Options:
  --server <url>    MCP server URL (default: https://mcp.aaif.live/)
  --name <label>    Connector name (default: derived from the server hostname, e.g. "aaif")
  --all             Configure every detected client, no prompts
  --client <id>     Configure a specific client (repeatable):
                    claude-desktop, claude-code, goose, chatgpt
  --force           Overwrite an existing entry with the same name
  --dry-run         Show what would change without writing anything
  -h, --help        Show help

Examples:

# Interactive: detect clients and choose which to connect
npx @gatewaze/connect

# Connect everything found, non-interactive
npx @gatewaze/connect --all

# A different server, specific clients, preview only
npx @gatewaze/connect --server https://mcp.example.org --client claude-desktop --client goose --dry-run

What it does per client

Claude Desktop — adds an entry to claude_desktop_config.json (~/Library/Application Support/Claude/ on macOS, %APPDATA%\Claude\ on Windows, ~/.config/Claude/ on Linux):

"mcpServers": {
  "aaif": { "command": "npx", "args": ["-y", "mcp-remote", "https://mcp.aaif.live/"] }
}

Claude Desktop's config cannot take a bare remote URL, so the entry goes through mcp-remote, which opens the OAuth sign-in in your browser. All existing config content is kept, the file is backed up first, and an existing entry with the same name is never overwritten without confirmation (or --force). Restart Claude Desktop after connecting.

Claude Code — runs claude mcp add --scope user --transport http <name> <url>. If the command cannot run, the tool prints it so you can run it yourself.

Goose (CLI and Desktop share one config) — appends an entry to the extensions: map in ~/.config/goose/config.yaml:

extensions:
  aaif:
    enabled: true
    name: aaif
    type: streamable_http
    uri: https://mcp.aaif.live/
    timeout: 300

The rest of the file, including comments, is preserved, and a backup is written to config.yaml.bak-<timestamp> first. The tool also prints a goose://extension?... deep link as a one-click alternative for Goose Desktop.

ChatGPT — connectors are managed in the ChatGPT web app, so the tool prints the steps: Settings -> Connectors -> Add, paste the server URL, sign in.

Development

npm install
npm run build     # tsc -> dist/
npm run dev       # run from source via tsx
npm test          # unit tests for the config mutators

Requires Node 18 or newer.