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

@john523100/vela-mcp

v0.8.0

Published

AI-driven dynamic test framework for Electron apps — drive renderer, webview, BrowserView, IPC, main process, breakpoints, console/network capture, and re-runnable specs over MCP.

Readme

vela-mcp

Vela MCP is the MCP server engine for AI-driven dynamic testing of Electron apps.

It exposes 20 tools over the Model Context Protocol, letting an AI agent (Claude Code, Codex, etc.) launch and drive an Electron application, inspect IPC channels, evaluate code in any context, capture screenshots, set breakpoints, record console/network traffic, and save/run re-runnable specs — all without modifying the app's production code.

Installation

npm install -g vela-mcp
# or use npx / a local path

Registering with Claude Code

Add to .mcp.json in your project root (or ~/.claude/mcp.json globally):

{
  "mcpServers": {
    "vela": {
      "command": "node",
      "args": ["<absolute-path-to>/node_modules/vela-mcp/dist/index.js"]
    }
  }
}

Or if installed globally / via npx:

{
  "mcpServers": {
    "vela": {
      "command": "npx",
      "args": ["vela-mcp"]
    }
  }
}

Registering with Codex

Add the same command/args block under the tools.mcp key in your Codex config.

Tools (20 total)

Launch & Targets

| Tool | Description | |------|-------------| | vela_launch | Launch an Electron app and attach CDP | | vela_list_targets | List open renderer/webview/BrowserView targets | | vela_attach_target | Attach to a specific target | | vela_screenshot | Capture a screenshot of the current target |

Eval & IPC

| Tool | Description | |------|-------------| | vela_eval | Evaluate JS in the currently attached renderer | | vela_ipc_list | List registered IPC channels (requires vela-agent) | | vela_ipc_invoke | Invoke an IPC channel and return the result | | vela_main_eval | Evaluate JS in the main process (requires vela-agent) |

Debugger

| Tool | Description | |------|-------------| | vela_debug_attach | Attach the debugger to a target | | vela_set_breakpoint | Set a breakpoint by URL + line number | | vela_wait_paused | Wait until execution hits a breakpoint | | vela_eval_frame | Evaluate an expression in the paused call frame | | vela_step | Step over / in / out | | vela_resume | Resume execution | | vela_debug_detach | Detach the debugger |

Specs

| Tool | Description | |------|-------------| | vela_spec_save | Save a recorded interaction as a re-runnable spec | | vela_spec_run | Run a saved spec and return results | | vela_spec_list | List all saved specs |

Console & Network Capture

| Tool | Description | |------|-------------| | vela_capture_start | Start capturing console logs and/or network requests | | vela_capture_read | Read captured events so far | | vela_capture_stop | Stop capturing and return final buffer |

More

See the repo for the full playbook, Claude Code skill, and sample app.