MCP server for Artillery 2.x β full flags, Fargate, raw-text parser, project launcher (MIT)
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Richer drop-in MCP server for Artillery 2.x β exposes the full artillery run
and artillery run-fargate flag surface, parses raw text output (artillery-output.txt),
returns every counter/rate/summary Artillery produces (not just http.*), and
optionally adds a config-driven project launcher and counter-grouping for your
custom counters.
The upstream @jch1887/artillery-mcp-server
was a solid start but missed several flags our team needed day-to-day. This package is
a MIT-licensed fork with broader coverage. See Credits.
| Feature | upstream | this package |
|---|---|---|
run_test_from_file flags | path + output only | + --record/--key/--tags/--name/--note/-t/-e/--scenario-name/-v/--overrides/-p/--dotenv/-k/--count/-s |
AWS Fargate (run-fargate) | β | β full flag set |
parse_results counters | http.* only | ALL counters + rates + nested summaries |
Parse raw stdout (artillery-output.txt) | β | β
read_artillery_output tool |
| HTML report generation | passes invalid --report flag | β
separate artillery report call |
Standalone JSON β HTML (run_report) | β | β |
--dry-run validation | broken (flag doesn't exist in 2.x) | β client-side YAML structural check |
| Opt-in project launcher | β | β
run_project_lt (when config present) |
| Opt-in counter grouping | β | β
counterBreakdown (when config present) |
init scaffolder | β | β
npx @kosiakmd/artillery-mcp init |
Shipped SKILL.md template | β | β agent-oriented guidance |
| Docker image | β | β multi-arch (Docker Hub + GHCR) |
| MCP Registry listing | β | β
io.github.kosiakMD/artillery-mcp |
serverVersion accuracy | hardcoded | β read from package.json at runtime |
| Tests | 122 | 163 |
Scaffolds two files (skipped if they already exist, use --force to overwrite):
.artillery-mcp.config.json β starter template with commented fields.ai/skills/artillery-mcp/SKILL.md β agent-oriented guidance (when to call which tool, common patterns, gotchas)After editing the config with your real flows/paths, register the MCP in your agent and restart the session:
Runs out of the box β no config file needed. Works as an MCP server over stdio for Claude Code, Claude Desktop, Cursor, and any MCP-compatible client.
Claude Code / Cursor β register as an MCP server in your client config:
Claude Code CLI:
Prerequisites: Node.js β₯ 20; Artillery CLI on PATH (npm i -g artillery).
Multi-arch image β linux/amd64 and linux/arm64, Artillery CLI preinstalled. ~500 MB (Chromium/Playwright browsers skipped β see below). Published to both Docker Hub and GitHub Container Registry from the same build; identical digests.
Run (mount your project as /workspace):
--init ensures the Node process gets reaped on stdin close. Mount /workspace read-write if you want save_config tools to persist to /workspace/saved-configs/; read-only is fine otherwise (the save-config family will simply return errors when called).
MCP client config (Claude Desktop / Cursor) β point the MCP at docker instead of npx:
Playwright engine? If you use engine: playwright in your Artillery scripts, extend the base image with Chromium:
Image tags:
latest β most recent releasev0.1.1, v0.1, v0 β pinned by semver (patch / minor / major)| Var | Purpose | Default |
|---|---|---|
ARTILLERY_BIN | Path to artillery binary | auto-detected via which artillery |
ARTILLERY_WORKDIR | Working directory for runs | cwd |
ARTILLERY_TIMEOUT_MS | Max duration of a single run | 1800000 (30 min) |
ARTILLERY_MAX_OUTPUT_MB | Cap on captured stdout/stderr | 10 |
ARTILLERY_ALLOW_QUICK | Enable quick_test tool | true |
ARTILLERY_CLOUD_API_KEY | Used when a tool is called with record: true | β |
ARTILLERY_MCP_CONFIG | Absolute path to project config (opt-in) | β |
DEBUG | artillery:mcp:* for verbose logs | β |
Run tests
run_test_from_file β full-flag artillery run wrapper (see flag surface above).run_test_inline β same but takes YAML text, writes to a tmp file.quick_test β artillery quick <url> with rate/count/duration/method/headers/body.run_fargate β artillery run-fargate with --region, --cluster, --cpu, --memory, --launch-type, --spot, --subnet-ids, --security-group-ids, --task-role-name, --task-ephemeral-storage, --container-dns-servers, --max-duration, --packages, --secret, --no-assign-public-ip + all run-shared flags.run_preset_test β smoke / baseline / soak / spike presets against a URL.run_saved_config β re-run a saved config by name.Parse + inspect results
parse_results β reads an Artillery JSON report; returns summary + allCounters + allRates + allSummaries + scenarios + metadata.read_artillery_output β reads a raw Artillery stdout dump (e.g. artillery-output.txt saved from CI), returns rawText (with tail-truncation), summaryBlock, counters, rates, metrics (nested percentiles).run_report β converts an existing JSON results file to HTML via artillery report. Use when you have JSON from CI artifacts and want shareable HTML without re-running.compare_results β diff two Artillery JSON results for regression detection.Saved configs
save_config / list_configs / get_config / delete_config β persistent named Artillery configs.Interactive builder
wizard_start / wizard_step / wizard_finalize β interactive test builder.Meta
list_capabilities β versions of Artillery/Node/this server, configured paths, limits.run_project_lt)Activated when a .artillery-mcp.config.json file is discovered. Gives you
one-liner invocations instead of writing full artillery run ... flag lists.
Discovery precedence:
ARTILLERY_MCP_CONFIG env var (absolute path)ARTILLERY_WORKDIR / cwd looking for .artillery-mcp.config.jsonConfig (.artillery-mcp.config.json):
Call:
Effective command:
Optional fields:
tagTemplates β {flow}, {env}, plus any caller-supplied templateVars (e.g. {round})outputDir β relative to project root; if missing, outputs land at project rootdefaultTags β merged before templatesenvironments β if empty, any environment name is acceptedOverride on the call side: name, note, extraTags, outputJson, reportHtml,
variables, overrides, record: false, validateOnly, extraArgs, templateVars.
counterBreakdown)No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/artillery-mcp)<a href="https://allmcps.com/mcp/artillery-mcp"><img src="https://allmcps.com/api/badge/artillery-mcp?style=directory" alt="Artillery MCP on AllMCPs" /></a>