Skip to main content
The WireMock Cloud agent skills plugin gives coding agents specialised knowledge and workflows for building and managing mock APIs in WireMock Cloud. Once installed, your agent can generate complete API simulations, create and validate stubs, convert stubs to stateful or data-driven variants, author response templates, and search the WireMock Cloud documentation - all without leaving your editor or terminal. Agent Skills is an open format for extending AI agents with domain-specific capabilities. A skill is a folder containing a SKILL.md file with instructions and optional supporting resources. Agents discover skills at startup, load them when relevant, and follow the instructions to complete tasks.

Available skills

The plugin bundles seven skills:
SkillDescription
/build-api-simulationGenerate a complete mock API for any REST API - OpenAPI spec, Arazzo test workflows, and WireMock stubs, optionally recorded from a live sandbox
Create stubsCreate and import WireMock stubs for a mock API
Convert to statefulConvert existing stubs to be stateful using the key-value state store
Convert to data-drivenConvert existing stubs to use CSV or database data sources
Validate and fix stubsValidate stubs against the OpenAPI schema and fix any errors
Author response templatesAuthor and debug Handlebars response templates for WireMock stubs
Search WireMock Cloud docsSearch cached WireMock Cloud documentation for accurate answers about stubs, request matching, response templating, CLI, Runner, and more
/build-api-simulation is a user-invocable slash command - type it to kick off a full API simulation workflow. The remaining skills are triggered automatically by context when relevant to the task at hand.

Prerequisites

Before using the skills you need the WireMock CLI installed and authenticated, as several skills interact with the WireMock Cloud API through MCP:
npm i -g @wiremock/cli
wiremock login
You should also have the WireMock MCP server configured in your agent. See the MCP installation guide for setup instructions.

Supported agents

The Agent Skills format is supported by a growing number of coding agents. The table below lists agents that can use the WireMock Cloud skills plugin, with installation instructions for each.
Claude Code has native support for agent skills via its plugin system.Add the marketplace registry containing the WireMock skills, then install the plugin from your terminal:
claude plugin marketplace add wiremock-inc/skills
claude plugin install wiremock-cloud@wiremock-inc-skills
Or within an interactive Claude Code session:
/plugin marketplace add wiremock-inc/skills
/plugin install wiremock-cloud@wiremock-inc-skills
This installs all seven skills. You can verify by asking Claude Code:
What skills are available?
You should see the WireMock Cloud skills listed. You can invoke the main skill directly:
/build-api-simulation

Skills vs MCP

The WireMock Cloud agent skills and the WireMock MCP server are complementary:
  • MCP gives your agent tools - the ability to call the WireMock Cloud API, search stubs, manage mock APIs, and make HTTP requests.
  • Skills give your agent expertise - knowledge of WireMock Cloud concepts, best practices, and multi-step workflows that orchestrate those tools effectively.
For the best experience, install both. The skills rely on MCP tools to interact with WireMock Cloud, while MCP tools are more effective when the agent has the domain knowledge that skills provide.