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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@kevinoconnell/mcpkit

v1.0.9

Published

Easy setup for MCPs with Browserbase - run browser automation anywhere with just an API key

Readme

MCPKit

Easy setup for MCPs with Browserbase. Run browser automation anywhere with just an API key.

What is MCPKit?

MCPKit is a CLI tool that generates Stagehand MCP servers for any website. With this, an LLM can do any kind of web flow.

Quick Start

Installation

npm install -g @kevinoconnell/mcpkit

Setup

Set up your Browserbase API key and llm model secrets:

mcpkit secrets

Create Your First MCP Server

# Create an MCP server for any website
mcpkit create https://mcpkit.sh

# Or use interactive mode
mcpkit create

At some point in the above, you will be prompted to sign in via a Browserbase session.

CLI Commands

mcpkit create <url>

Generate an MCP server for a website with AI-powered discovery.

Arguments:

  • url (optional): The website URL. If omitted, you'll be prompted interactively.

Examples:

mcpkit create https://news.ycombinator.com
mcpkit create  # Interactive mode

mcpkit contexts

Manage saved authentication contexts for websites.

Actions:

  • list: Show all saved contexts
  • show <domain>: Display details for a specific context
  • delete <domain>: Remove a context

Examples:

mcpkit contexts list
mcpkit contexts show github.com
mcpkit contexts delete mcpkit.sh
mcpkit contexts create mcpkit.sh

mcpkit secrets

Set up and manage secrets for browserbase, as well as your model of choice

Examples:

mcpkit secrets  # Interactive setup

mcpkit help

Display help information and available commands.

mcpkit version

Show the current version of MCPKit.

Note: For detailed documentation, examples, and guides, visit mcpkit.sh

Testing Generated MCP Servers

After running mcpkit create, test your generated server:

  1. Navigate to the created folder:
cd mcp-stagehand-{domain}/
  1. Test with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js

You should see a screen like this:

Hacker News MCP Example

Alternatively, you can install into claude code with

claude mcp add --transport stdio "your-server-name" -- node /absolute/path/to/dist/index.js

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Development Setup

Within the repo, run:

npm install && npm run build && npm link

Now you can run a local instance of MCPKit for testing :)

License

MIT