17 Aug 2026·2 min read

Install the Webapp Testing agent skill

Install the Webapp Testing agent skill

To install Anthropic’s Webapp Testing skill, run npx skills add https://github.com/anthropics/skills --skill webapp-testing, then ask your agent to plan or run UI tests instead of improvising a one-off Playwright script in chat.

This is an agent skill (a playbook), not an MCP server. The canonical listing is Webapp Testing. Re-check that page if upstream changes the package or skill name. The install line above matches the npx skills add path people search for.

Skill versus MCP

Agent skill MCP server
Job How the agent works a testing task Live browser or API access
Install Often npx skills add stdio / HTTP MCP config
Example Webapp Testing Playwright MCP

A strong setup uses both: the skill for test design, Playwright MCP for driving a real browser.

What the Webapp Testing skill is

Webapp Testing comes from Anthropic’s skills set. Use it when you want the agent to structure coverage, selectors, and failure triage instead of dumping an unstructured test file.

Prerequisites

  • A coding agent that supports skills via npx skills add
  • Network access to fetch from GitHub
  • A real UI surface to test (local app or staging)

Install command

npx skills add https://github.com/anthropics/skills --skill webapp-testing

That is the npx skills add webapp-testing path. Confirm it still matches the listing before you document it internally.

Client setup

  1. Run the install command in the workspace your agent uses.
  2. Reload or restart the agent if skills load at startup.
  3. On the next test task, invoke the skill explicitly.
  4. For live clicks in a browser, connect Playwright MCP.

Caveats

  • The skill does not replace your test runner or CI. You still own review.
  • Do not invent coverage claims the listing does not make.

When to choose something else

UI taste: Frontend Design skill install. Evidence-led bugs: Systematic Debugging. Browse agent skills.

Related: Webapp Testing listing, Frontend Design skill install, Playwright MCP setup, and the Agent Skills Directory.

FAQ

Is Webapp Testing an MCP server?
No. It is an agent skill installed with npx skills add.
What is the install command?
npx skills add https://github.com/anthropics/skills --skill webapp-testing — re-check /skills/webapp-testing if upstream changes.
Should I still use Playwright MCP?
Yes if you need a live browser. The skill is the playbook; Playwright MCP is the browser access.
Where is the source?
Linked from /skills/webapp-testing.
skillswebapp-testinganthropicsetup

Related Posts