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

@glenmaura/autopilot-mcp

v1.3.0

Published

MCP server wrapper for Autopilot — exposes ax_navigate, ax_screenshot, ax_accessibility, ax_execute, ax_wait, ax_text to Claude Code

Readme

Autopilot MCP Server

MCP server that exposes Autopilot to Claude Code via stdio. Claude Code gets 6 tools: navigate, screenshot, accessibility inspection, JS execution, page text, and wait helpers.

Quick install (local, before npm publish)

cd /path/to/autopilot/mcp-server
npm install

Once published: npm install -g @memjar/autopilot-mcp

Claude Code config

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "autopilot": {
      "command": "node",
      "args": ["/path/to/autopilot/mcp-server/index.js"]
    }
  }
}

Replace /path/to/autopilot with your actual path (e.g. /Users/mike/Desktop/autopilot).

With autostart (browser launches automatically on first tool call)

{
  "mcpServers": {
    "autopilot": {
      "command": "node",
      "args": ["/path/to/autopilot/mcp-server/index.js"],
      "env": {
        "AXE_BROWSER_AUTOSTART": "1"
      }
    }
  }
}

Start Autopilot manually (recommended)

cd /path/to/autopilot
AXE_HEADLESS=1 npm start

The browser API listens on http://127.0.0.1:9333. Custom port: set AXE_BROWSER_PORT.

Available tools

| Tool | What it does | |------|-------------| | ax_navigate | Navigate to a URL | | ax_screenshot | Capture a PNG of the current page | | ax_accessibility | Get interactive elements (role, name, rect) | | ax_execute | Run JavaScript in the active tab | | ax_wait | Sleep N milliseconds (for page settle) | | ax_text | Read visible page text (or a CSS selector) |

Example prompts for Claude Code

Use ax_navigate to open https://crown.axe.observer, wait 2 seconds, then screenshot it.

Navigate to https://atlas.axe.observer, use ax_accessibility to list all buttons, then ax_text to read the main heading.

Use ax_navigate to go to http://localhost:3000, ax_execute with js="document.querySelector('h1')?.innerText" to check the heading, then ax_screenshot to save a visual record.

Test the MCP server

# Check tool list
echo '{"jsonrpc":"2.0","method":"tools/list","id":1}' | node index.js

# Navigate (Autopilot must be running)
echo '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"ax_navigate","arguments":{"url":"https://example.com"}},"id":2}' | node index.js

Environment variables

| Variable | Default | Purpose | |----------|---------|---------| | AXE_BROWSER_PORT | 9333 | Port Autopilot is listening on | | AXE_BROWSER_AUTOSTART | 0 | Set to 1 to auto-spawn Autopilot on first call |