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

@skippr/extension-mcp-server

v0.6.2

Published

MCP server that bridges Skippr product review insights with AI coding agents. Enables developers to automatically fix UX, accessibility, and product issues identified by Skippr's browser extension using natural language commands in Claude Code, Cursor, Wi

Readme

Skippr Extension MCP Server

Website NPM Version MIT licensed

Skippr Extension MCP Server acts as a bridge between product issues identified by Skippr's browser extension. Built upon MCP, it enables your coding agent to discover, understand, and fix issues such as UX inconsistencies, accessibility violations, and product quality problems seamlessly.

Key Features

  • Natural language interaction: Fix product issues using intuitive, conversational commands with your AI coding agent.
  • Seamless integration: Works with Claude Code, Cursor, Copilot, and other MCP-compatible coding assistants.
  • Real-time issue sync: Automatically receives issues from Skippr's browser extension as you review your product.
  • AI-powered reviews: Get insights from specialized AI agents that review your product like a PM, designer, content strategist, and accessibility expert would.
  • Context-rich details: Each issue includes actionable prompts, element metadata, and suggested fixes.
  • Project-based organization: Manage multiple projects with isolated issue tracking.

Prerequisites

Before setting up the Skippr MCP server, ensure you have:

  • An MCP Coding Agent Client application (Claude Code, Cursor, VS Code, etc.)
  • Node.js >= v22.x
  • Skippr Chrome Extension installed and configured

Installation

Run this command in your terminal. See Claude Code MCP docs for more info.

Claude Code Local Server Connection

claude mcp add skippr-extension-mcp -- npx -y @skippr/extension-mcp-server

After installation, the Skippr Extension MCP server will be available in your Claude Code sessions. You can start using natural language commands to interact with your product issues.

Go to: Settings -> Cursor Settings -> MCP -> Add new global MCP server

Paste the following configuration into your Cursor ~/.cursor/mcp.json file. You may also install in a specific project by creating .cursor/mcp.json in your project folder. See Cursor MCP docs for more info.

Cursor Local Server Connection

{
  "mcpServers": {
    "skippr-extension-mcp": {
      "command": "npx",
      "args": ["-y", "@skippr/extension-mcp-server"]
    }
  }
}

After adding the configuration, restart Cursor to activate the MCP server.

Add the following to your VS Code settings.json file (accessible via Command Palette > Preferences: Open User Settings (JSON)). See VS Code MCP docs for more info.

"mcp": {
  "servers": {
    "skippr-extension-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@skippr/extension-mcp-server"]
    }
  }
}

After adding the configuration, reload VS Code to activate the MCP server.

Usage Examples

Once installed, interact with Skippr using natural language commands in your coding assistant:

  • Show me all high-severity accessibility issues in my project
  • List all unresolved UX issues for the latest review
  • Get details for issue abc-123 and help me fix it
  • What product issues do I have across all my projects?

Support

For questions, technical support, or feedback:

© 2025 Skippr - Released under MIT License