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

easy-spec-mcp

v1.4.1

Published

MCP server for Easy Spec - Playwright: edit flows, scenarios, and page objects, and drive live browser automation, through a connected browser extension side panel.

Readme

easy-spec-mcp

MCP server for Easy Spec - Playwright projects. It lets an MCP-connected assistant (Claude Code, Claude Desktop, etc.) read and edit flows, scenarios, page objects, and variables, and drive live browser automation -- all by relaying every operation to the companion browser extension's side panel.

This server never reads project files or drives a browser itself. It holds no filesystem adapter and spawns no browser process; every tool call is forwarded over a local WebSocket bridge to an already-connected, human-approved side panel, which performs the action and reports back.

Requirements

  • Node.js 18+
  • The Easy Spec - Playwright browser extension installed, with its side panel open and connected to your project folder
  • The MCP agent must be approved in the side panel before any live_* tool will work

Install / run

No install needed -- run it with npx:

npx easy-spec-mcp

Add to an MCP client

{
  "mcpServers": {
    "easy-spec": {
      "command": "npx",
      "args": ["easy-spec-mcp"],
      "env": {
        "EASYSPEC_PROJECT": "/absolute/path/to/your/project"
      }
    }
  }
}

EASYSPEC_PROJECT is optional -- every tool also accepts a project argument. If omitted, tools fall back to EASYSPEC_PROJECT, and the live_* tools can auto-target the single connected side panel with neither.

Tools

  • Inspection -- list_flows, list_scenarios, list_page_objects, get_variables, get_flow, get_scenario, get_page_object
  • Flow authoring -- create_flow, delete_flow, set_flow_meta, add_step, add_multiple_steps, update_step, remove_step, copy_steps, set_flow_dataset, remove_flow_dataset, set_state_var, remove_state_var, set_output_field, remove_output_field
  • Page objects -- create_page_object, delete_page_object, set_locator, remove_locator
  • Scenarios -- create_scenario, delete_scenario, add_flow_to_scenario, remove_flow_from_scenario, set_scenario_dataset, remove_scenario_dataset
  • Variables -- set_variable, unset_variable
  • Live browser control (requires a connected, approved side panel) -- live_status, live_replay_flow, live_replay_scenario, live_run_step, live_run_multiple_steps, live_run_step_range, live_pick_element, live_snapshot, live_screenshot, live_detach
  • Run tracking -- live_start_run, live_list_runs, live_get_run, live_cancel_run, live_start_scenario_run, live_list_scenario_runs, live_get_scenario_run, live_cancel_scenario_run
  • Tab management -- live_list_tabs, live_switch_tab, live_new_tab

Call live_status first to see which projects have a connected side panel and what to pass as project/session.

License

MIT