- Home
- MCP servers
- Skippr Extension
Skippr Extension
- javascript
0
GitHub Stars
javascript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"skippr-hq-extension-mcp-server": {
"command": "npx",
"args": [
"-y",
"@skippr/extension-mcp-server"
]
}
}
}Skippr Extension MCP Server acts as a bridge between product issues identified by Skippr’s browser extension. Built on MCP, it enables your coding agent to discover, understand, and fix UX, accessibility, and product quality issues through natural language interactions and real-time issue syncing, with project-based organization for multiple projects.
How to use
You can use the Skippr Extension MCP Server with any MCP-compatible coding assistant to review, understand, and fix product issues. Interact in natural language to list, inspect, and resolve issues across your projects. You’ll get context-rich details such as actionable prompts, element metadata, and suggested fixes, all surfaced by the AI agents designed to act like a PM, designer, content strategist, and accessibility expert.
How to install
Prerequisites you need before starting: you have an MCP Coding Agent Client application (for example Claude Code, Cursor, VS Code), Node.js installed (version 22.x or newer), and the Skippr Chrome Extension installed and configured.
Install in Claude Code
Install in Claude Code
Run this command in your terminal to connect Claude Code to the Skippr MCP server.
claude mcp add skippr-extension-mcp -- npx -y @skippr/extension-mcp-server
Install in Cursor
Add a local MCP server configuration in Cursor to connect to the Skippr MCP server.
{
"mcpServers": {
"skippr-extension-mcp": {
"command": "npx",
"args": ["-y", "@skippr/extension-mcp-server"]
}
}
}
Install in VS Code + Copilot
Configure VS Code to connect to the MCP server by adding a server entry in your user settings.
"mcp": {
"servers": {
"skippr-extension-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@skippr/extension-mcp-server"]
}
}
}
What you’ll install and run
The server is provided as an MCP stdio service that you run via npm/npx. After adding the configuration, restart your MCP client (Claude Code, Cursor, or VS Code) to activate the MCP server.
Usage examples
Once installed, interact with Skippr using natural language commands in your coding assistant, for example:
- 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?
Available tools
nl_fix
Fix product issues using natural language with your coding agent.
real_time_sync
Receive issues from Skippr’s browser extension in real time as you review your product.
ai_reviews
AI-powered reviews by PM/designer/accessibility expert agents to provide actionable insights.