jmeter-mcp-server
Allows generating, running, and analyzing Apache JMeter performance tests from structured API sources such as OpenAPI files.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@jmeter-mcp-serverGenerate a baseline test plan from the attached OpenAPI spec."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
JMeter MCP Server
An MCP server for generating, validating, running, and reporting Apache JMeter API performance tests from structured API sources.
The project is designed for SDETs and automation engineers who want LLM-assisted test-plan creation without letting the LLM write arbitrary JMX. The LLM supplies structured MCP tool arguments; TypeScript code validates the input, applies deterministic load policies, renders JMX, and validates the generated file.
Features
Generate JMeter
.jmxplans from OpenAPI files or explicit endpoint details.Deterministic test profiles:
smoke,baseline,load,spike,stress,soak, andcustom.Zod-validated MCP tool inputs.
Guardrails for aggressive load, documented rate limits, and profile mismatch.
Runtime parameterization for credentials with JMeter properties such as
${__P(API_KEY,)}.OS-agnostic JMeter binary resolution through
JMETER_BIN,JMETER_HOME, orjmeteronPATH.TypeScript runner scripts for individual JMX files, suites, and JTL summary reports.
GitHub Actions CI for strict TypeScript build and guardrail tests.
Related MCP server: JMeter MCP Server
Prerequisites
Node.js
>=22npm
Apache JMeter
5.6.xor compatibleJava supported by your JMeter installation
JMeter can be discovered in one of three ways:
export JMETER_BIN=/absolute/path/to/jmeteror:
export JMETER_HOME=/absolute/path/to/apache-jmeteror by having jmeter available on PATH.
Install
npm ci
npm run build:all
npm testMCP Usage
Build the server:
npm run buildConfigure your MCP client to run:
node /absolute/path/to/jmeter-mcp-server/build/index.jsOr use a short command after linking the package locally:
npm link
jmeter-mcp-serverSee docs/MCP_CLIENTS.md for Claude, Claude Code, VS Code/Copilot-style, Continue-style, and generic MCP client examples.
Use the high-level tool for deterministic generation:
create_test_plan_from_api_sourcePrefer this high-level tool over step-by-step JMX edits. It validates inputs, applies load-profile policy, renders a complete plan, and validates the generated JMX.
Test Profiles
Profile | Users | Ramp-up | Loops | Duration | Notes |
| 1 | 1s | 1 | none | Minimal validation |
| 5 | 5s | 1 | none | Safe default |
| 10 | 30s | 3 | none | Moderate load |
| 25 | 1s | 1 | none | Requires |
| 50 | 60s | 5 | none | Requires |
| 5 | 60s | forever | 1800s | Requires |
| required | optional | optional | optional | Fully explicit |
Deterministic profiles reject mismatched overrides. For example, testProfile=baseline with users=6 fails. Use testProfile=custom when you need custom values.
Guardrails
The generation path is intentionally constrained:
LLM request
-> MCP tool schema
-> Zod validation
-> deterministic profile policy
-> source parsing
-> normalized test plan model
-> JMX renderer
-> generated JMX validation
-> output fileThe MCP rejects:
missing
usersforcustomprofilesdeterministic profile overrides that do not match policy
aggressive profiles without
allowAggressiveLoad=trueestimated request rates above a documented OpenAPI rate limit unless explicitly allowed
malformed headers, placeholder hosts, unsupported protocols, and incomplete request body metadata
Generated JMX validation checks required JMeter components, thread settings, loop settings, duration settings, endpoint target, headers, variables, assertions, and result collectors.
Credentials And Variables
Do not commit .env.
Copy the example locally:
cp .env.example .envGenerated JMX files use JMeter properties and do not need secrets embedded:
${__P(API_KEY,)}
${__P(OAUTH_CLIENT_ID,)}
${__P(OAUTH_CLIENT_SECRET,)}At runtime, pass values through JMeter properties or set JMETER_ENV_FILE:
JMETER_ENV_FILE=.env npm run jmeter:run -- jmeter/API_Test_Plan_4th_API.jmx results/local-runScripts
Build:
npm run build:allRun guardrail tests:
npm testGenerate JMX suite from OpenAPI:
npm run generate:jmeter:suite -- openapi.yaml jmeter 5Run one JMX:
npm run jmeter:run -- jmeter/API_Test_Plan_1st_API.jmx results/local-runRun a suite:
npm run jmeter:suite -- jmeter results/suiteGenerate a suite report from JTL files:
npm run jmeter:report -- results/suite/<run-directory>Rate Limits And Public APIs
Do not run aggressive tests against public or third-party APIs unless the API owner explicitly allows it.
For public practice APIs, prefer smoke or baseline. Profiles such as spike, stress, and soak require explicit opt-in through allowAggressiveLoad=true.
Repository Hygiene
Ignored by default:
.env,.env.*.continue/,.vscode/node_modules/build/results/*.log*.jtl
Commit-worthy files are source, configuration, docs, workflows, OpenAPI examples, and intentional JMX examples.
Development
npm ci
npm run build:all
npm testCI runs:
npm run ciwhich performs a strict TypeScript build and guardrail tests.
Status
This project is suitable for early public adoption by SDETs who are comfortable with MCP, JMeter, and TypeScript. The core guardrails are deterministic and tested. Additional API source adapters such as Postman collections, HAR files, or GraphQL schemas can be added behind the existing adapter interfaces.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IAnjaniKr/jmeter-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server