PluginBench
MCP Server
Active
MIT

io.github.PramodDutta/qaskills MCP Server

io.github.PramodDutta/qaskills

Search, inspect, and install 400+ curated QA testing skills for AI coding agents like Claude, Cursor, and Copilot.

What is the io.github.PramodDutta/qaskills MCP server?

The QASkills.sh MCP server is a curated directory of 400+ QA testing skills designed for AI coding agents. It provides tools to search, inspect, and install expert-reviewed testing patterns covering E2E, API, unit, performance, security, and accessibility testing across 13+ frameworks like Playwright, Cypress, Jest, and Pytest.

QASkills.sh fills a gap in AI agent capabilities by offering a dedicated, curated collection of QA testing skills. Instead of generic coding knowledge, your AI agent gains expert-level testing expertise with a single command. Install skills for Playwright, Cypress, k6, OWASP security testing, and more—your agent automatically writes tests following best practices and design patterns.

How to install io.github.PramodDutta/qaskills

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • QASKILLS_API_URL

    Override the QASkills API base URL (defaults to https://qaskills.sh)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "qaskills": {
      "command": "npx",
      "args": [
        "-y",
        "@qaskills/mcp"
      ],
      "env": {
        "QASKILLS_API_URL": "<YOUR_QASKILLS_API_URL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "qaskills": {
      "command": "npx",
      "args": [
        "-y",
        "@qaskills/mcp"
      ],
      "env": {
        "QASKILLS_API_URL": "<YOUR_QASKILLS_API_URL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "qaskills": {
      "command": "npx",
      "args": [
        "-y",
        "@qaskills/mcp"
      ],
      "env": {
        "QASKILLS_API_URL": "<YOUR_QASKILLS_API_URL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "qaskills": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@qaskills/mcp"
      ],
      "env": {
        "QASKILLS_API_URL": "<YOUR_QASKILLS_API_URL>"
      }
    }
  }
}
Claude Code
claude mcp add qaskills --env QASKILLS_API_URL=<YOUR_QASKILLS_API_URL> -- npx -y @qaskills/mcp

Tools & capabilities

Tools this server exposes to the agent.

  • search_skillsSearch for QA testing skills by keyword or category
  • get_skillRetrieve metadata and details about a specific skill
  • get_skill_contentGet the full content of a skill's SKILL.md file
  • install_skillInstall a skill into your AI agent's configuration
  • list_categoriesList all available skill categories
  • get_leaderboardRetrieve the skills leaderboard with quality ratings

Use cases

  • Install Playwright E2E testing patterns so Claude writes Page Object Model tests automatically
  • Search for API testing skills and install REST Assured or Playwright API patterns for backend testing
  • Add OWASP security testing knowledge to your agent for vulnerability-aware test writing
  • Install k6 performance testing skills to generate load test scripts
  • Browse and install accessibility testing with Axe-core to ensure WCAG compliance in tests

io.github.PramodDutta/qaskills MCP server FAQ

What is the QASkills.sh MCP server?

It's an MCP server that gives AI coding agents access to 400+ curated QA testing skills. You can search, inspect, and install skills directly from inside Claude, Cursor, Copilot, or any MCP-compatible agent.

Is QASkills.sh free?

Yes, QASkills.sh is open source under the MIT license. All skills are free to search, install, and use.

How do I install it in Claude Code?

Run: `claude mcp add qaskills -- npx -y @qaskills/mcp`. For other MCP clients like Cursor or Windsurf, add the server to your mcpServers config with command `npx` and args `["-y", "@qaskills/mcp"]`.

What testing frameworks are supported?

Playwright, Cypress, Selenium, Jest, Pytest, k6, JMeter, Appium, Postman, REST Assured, Cucumber, Axe-core, Pact, and more.

Can I publish my own skills?

Yes. Use the dashboard at qaskills.sh/dashboard/publish or the CLI command `npx @qaskills/cli init` to create and publish custom SKILL.md files.

Which AI agents are supported?

27+ agents including Claude Code, Cursor, GitHub Copilot, Windsurf, Aider, Cline, Devin, Continue, Zed AI, JetBrains AI, and more.

README (reference)

Source of truth, from the repository.

<div align="center"> <!-- TODO: Replace with your Canva hero banner (dark gradient, "QASkills.sh" title, tagline, CLI command) --> <!-- <img src="assets/hero-banner.png" alt="QASkills.sh — The QA Skills Directory for AI Coding Agents" width="100%" /> -->

QASkills.sh

The Curated QA Skills Directory for AI Coding Agents

The curated QA skills directory for Claude Code, Cursor, Copilot, Windsurf, and 27+ AI coding agents.

npm version License: MIT Website YouTube

Website | Skills Directory | Leaderboard | Get Started


</div>

Why QASkills.sh?

Among 49,000+ skills on Vercel's skills.sh, barely any are dedicated to QA testing. QASkills.sh fills that gap — a curated, QA-specific skills directory that gives your AI coding agent expert-level testing knowledge with a single command.

<!-- TODO: Replace with animated GIF of `npx @qaskills/cli add playwright-e2e` in a terminal --> <!-- <p align="center"><img src="assets/demo.gif" alt="QASkills CLI Demo" width="600" /></p> -->
npx @qaskills/cli add playwright-e2e
  ✓ Detected agent: Claude Code
  ✓ Installing playwright-e2e v1.0.0...
  ✓ Skill installed successfully!

Your AI agent now writes Playwright tests using Page Object Model, fixtures, and best practices — automatically.


Quick Start

1. Install a skill (no global install needed)

npx @qaskills/cli add playwright-e2e

2. Or install globally for faster access

npm i -g @qaskills/cli
qaskills add playwright-e2e

3. Search for skills

npx @qaskills/cli search "api testing"

4. List installed skills

npx @qaskills/cli list

5. Remove a skill

npx @qaskills/cli remove playwright-e2e

6. Or use the MCP server (search and install from inside your agent)

Listed in the official MCP registry as io.github.PramodDutta/qaskills.

# Claude Code
claude mcp add qaskills -- npx -y @qaskills/mcp
// Any MCP client (Cursor, Windsurf, etc.)
{
  "mcpServers": {
    "qaskills": { "command": "npx", "args": ["-y", "@qaskills/mcp"] }
  }
}

Your agent gets six tools: search_skills, get_skill, get_skill_content, install_skill, list_categories, get_leaderboard. See packages/mcp.


Feature Highlights

FeatureDescription
27+ Agents SupportedClaude Code, Cursor, Copilot, Windsurf, Codex, Aider, Cline, Devin, and more
Auto-DetectionCLI detects which AI agent you're using and installs to the right config directory
20+ Curated SkillsExpert-reviewed QA testing patterns covering E2E, API, unit, performance, security, and more
Skill PacksInstall bundles of related skills in one command
Publish Your OwnCreate and share skills via the dashboard or CLI
Open SourceMIT licensed, community-driven

Supported Frameworks

<div align="center"> <img src="https://img.shields.io/badge/Playwright-2EAD33?logo=playwright&logoColor=white" alt="Playwright" /> <img src="https://img.shields.io/badge/Cypress-69D3A7?logo=cypress&logoColor=white" alt="Cypress" /> <img src="https://img.shields.io/badge/Selenium-43B02A?logo=selenium&logoColor=white" alt="Selenium" /> <img src="https://img.shields.io/badge/Jest-C21325?logo=jest&logoColor=white" alt="Jest" /> <img src="https://img.shields.io/badge/Pytest-0A9EDC?logo=pytest&logoColor=white" alt="Pytest" /> <img src="https://img.shields.io/badge/k6-7D64FF?logo=k6&logoColor=white" alt="k6" /> <img src="https://img.shields.io/badge/JMeter-D22128?logo=apachejmeter&logoColor=white" alt="JMeter" /> <img src="https://img.shields.io/badge/Appium-663399?logo=appium&logoColor=white" alt="Appium" /> <img src="https://img.shields.io/badge/Postman-FF6C37?logo=postman&logoColor=white" alt="Postman" /> <img src="https://img.shields.io/badge/REST_Assured-4EA94B" alt="REST Assured" /> <img src="https://img.shields.io/badge/Cucumber-23D96C?logo=cucumber&logoColor=white" alt="Cucumber" /> <img src="https://img.shields.io/badge/Axe--core-663399" alt="Axe-core" /> <img src="https://img.shields.io/badge/Pact-6929C4" alt="Pact" /> </div>

Supported AI Agents (27+)

AgentStatusAgentStatus
Claude CodeCursor
GitHub CopilotWindsurf
Codex CLIAider
ContinueCline
Zed AIBolt.new
Lovablev0
DevinSourcegraph Cody
Replit AgentAmazon Q Developer
JetBrains AIGemini Code Assist
Roo CodeAugment Code
TraeAnd more...

Available Skills

#SkillCategoryQuality
1Playwright E2E TestingE2E, Visual92/100
2Jest Unit TestingUnit91/100
3Cypress E2E TestingE2E90/100
4OWASP Security TestingSecurity89/100
5Playwright API TestingAPI88/100
6Pytest PatternsUnit, Integration88/100
7k6 Performance TestingPerformance87/100
8Visual Regression TestingVisual86/100
9Axe-core AccessibilityAccessibility86/100
10Selenium Java TestingE2E85/100
11REST Assured APIAPI85/100
12CI/CD Pipeline ConfigDevOps85/100
13Appium Mobile TestingMobile84/100
14Postman API TestingAPI84/100
15Contract Testing (Pact)Contract84/100
16Test Data GenerationUtility83/100
17JMeter Load TestingLoad82/100
18BDD/Cucumber PatternsBDD82/100
19Test Plan GenerationProcess80/100
20Bug Report WritingProcess78/100

Browse all skills →


Skill Packs

Install multiple skills at once with curated packs:

PackIncludesUse Case
Full Stack QAPlaywright + Cypress + k6 + OWASP + Jest + Pytest + CI/CDComplete QA coverage
Complete Playwright SuiteE2E + API + Visual + AccessibilityPlaywright-focused teams
API Testing ToolkitPlaywright API + REST Assured + Postman + Pact + k6Backend & API testing

How It Works

1. SEARCH   →  Browse skills on qaskills.sh or search via CLI
2. INSTALL  →  npx @qaskills/cli add <skill-name>
3. TEST     →  Your AI agent now has QA expertise built-in

The CLI auto-detects which AI agent you're using (Claude Code, Cursor, Copilot, etc.) and installs the skill's SKILL.md to the correct configuration directory. Your agent reads this file and follows the testing patterns automatically.


Publish Your Own Skill

Via the Website

  1. Go to qaskills.sh/dashboard/publish
  2. Sign in with GitHub
  3. Fill in the 5-step form
  4. Publish!

Via the CLI

# Scaffold a new SKILL.md
npx @qaskills/cli init my-skill

# Edit the generated SKILL.md with your testing patterns

# Publish to the registry
npx @qaskills/cli publish

SKILL.md Format

---
name: My Testing Skill
description: What this skill teaches AI agents
version: 1.0.0
license: MIT
testingTypes: [E2E, API]
frameworks: [Playwright]
languages: [TypeScript]
agents: [claude-code, cursor, copilot]
---

# My Testing Skill

Instructions for the AI agent go here...

Tech Stack

LayerTechnology
FrameworkNext.js 15 (App Router)
UIshadcn/ui + Tailwind CSS v4
DatabaseNeon Serverless Postgres + Drizzle ORM
SearchTypesense
AuthClerk
CacheUpstash Redis
HostingVercel
CLITypeScript + Commander.js
MonorepoTurborepo + pnpm

Project Structure

qaskills/
├── packages/
│   ├── web/              # Next.js 15 website & API
│   ├── cli/              # @qaskills/cli (npm package)
│   ├── shared/           # Types, constants, Zod schemas, parsers
│   ├── sdk/              # Programmatic TypeScript SDK
│   └── skill-validator/  # SKILL.md validation
├── seed-skills/          # 20+ curated QA skill definitions
└── landingpage/          # Marketing site

Contributing

We welcome contributions! Here's how to get involved:

  1. Add a new skill — Create a SKILL.md and publish via the dashboard or CLI
  2. Improve existing skills — Submit PRs to enhance testing patterns and coverage
  3. Report bugsOpen an issue on GitHub
  4. Feature requests — Open an issue or start a discussion

Local Development

# Clone the repo
git clone git@github.com:PramodDutta/qaskills.git
cd qaskills

# Install dependencies (requires pnpm 9.15+ and Node 20+)
pnpm install

# Build shared package first (other packages depend on it)
pnpm --filter @qaskills/shared build

# Start all dev servers
pnpm dev

# Run tests
pnpm test

# Lint & format
pnpm lint
pnpm format

<div align="center">

Built by The Testing Academy

189K+ YouTube Subscribers | QA & Test Automation Education

YouTube | Website | Twitter


MIT License | Made with testing in mind

</div>

Related MCP servers

Plain-English browser tests for AI agents: real Chrome, deterministic verdicts. Free, no API keys.

1
TypeScript
View repository →