streamable-httpupdated 1mo ago
A remote, hosted Model Context Protocol server that turns Claude, Cursor, Codex, VS Code Copilot, and ChatGPT into a full performance-testing operator. Create tests, launch load runs on managed cloud runners, read results, and get root-cause analysis โ all in natural language, all authenticated with your own key.
What can you do with maxoperf?
โก MaxoPerf MCP Server
Drive the entire MaxoPerf platform from any AI agent โ with your API key.
A remote, hosted Model Context Protocol server that turns Claude, Cursor, Codex, VS Code Copilot, and ChatGPT into a full performance-testing operator. Create tests, launch load runs on managed cloud runners, read results, and get root-cause analysis โ all in natural language, all authenticated with your own key.
https://app.maxoperf.com/mcp
Configuration
It's a remote, hosted server โ nothing to install or run. Add this to your MCP client config and set MAXOPERF_API_KEY (create one in the console โ Settings โ API keys):
{
"mcpServers": {
"maxoperf": {
"type": "http",
"url": "https://app.maxoperf.com/mcp",
"headers": {
"Authorization": "Bearer ${MAXOPERF_API_KEY}"
}
}
}
}
Your key is validated on every call by the real platform (auth, tenancy, OpenFGA, audit) โ the server stores nothing and adds no new trust boundary. Revoke the key, access dies instantly. Send the header X-MaxoPerf-MCP-Mode: read-only for a look-but-don't-touch session (write tools hidden).
Install (pick your client)
Claude Code โ the plugin bundles the server and the agent skill:
/plugin marketplace add MaxoPerf/mcp
/plugin install maxoperf
Or add just the connector:
claude mcp add --transport http maxoperf https://app.maxoperf.com/mcp \
--header "Authorization: Bearer ${MAXOPERF_API_KEY}"
Cursor ยท VS Code / Copilot ยท Codex ยท ChatGPT ยท Claude Desktop โ one-click deeplinks and copy-paste config in packaging/. All use the same mcpServers block above.
Tools
29 curated tools. Reads default to response_format: "concise" (pass "detailed" for the full payload); write tools require a non-read-only session, and cancel_run is hidden in read-only mode.
Context & tenancy
whoamiโ Resolve the account + default workspace behind your API keylist_workspacesโ List workspaces visible to the accountset_active_workspaceโ Set the active workspace for the sessionlist_projectsโ List projects (with edit/delete permissions)create_projectโ Create a project
Tests
list_testsโ List tests (filter by project / workspace / type)get_testโ Get one test + its validation summarycreate_testโ Create a test shell (choose the engine/executor)get_test_overviewโ Run-history overview for a test
Test files
upload_test_fileโ Upload a script/data file in one call (real 3-step presigned flow)list_test_filesโ List a test's files + upload statedownload_test_fileโ Get a short-lived download URL for a file
Runs
start_runโ Launch a load/browser run on managed cloud runners (idempotent)get_run_statusโ Poll lifecycle status (queued โ running โ passed/failed/cancelled)list_runsโ Paginated run history with filterscancel_runโ Cancel a run (destructive; hidden in read-only)rerun_runโ Re-run from a snapshot or the current testadd_runnersโ Scale a live run up at existing locations
Results
get_run_resultsโ KPI overview: throughput, latency percentiles, error ratequery_run_metricsโ Time-series metrics (latency / throughput / errors / load / health)get_run_errorsโ Grouped error rows (message / count / code)
Diagnostics โ root-cause & anomaly detection
get_run_summaryโ Executive summary + which failure criteria trippedget_run_error_bodiesโ Sampled error request/response bodies + status codesget_run_logsโ Error-level engine/system log linesget_runner_healthโ Runner CPU/mem trend + targetVus vs peakAchievedVus (vuShortfallPct)detect_run_anomaliesโ Deterministic robust-outlier scan (median/MAD); terminal-gated, low false-positive
Escape hatch & discovery
call_platform_apiโ Reach any public/v1/*endpoint (secrets, environments, schedules, BYOC); admin/internal deny-listed, SSRF-safeget_openapiโ The public OpenAPI documentsearch_endpointsโ Keyword search over the API to find the right endpoint
Prompts
Text recipes that encode the correct tool sequence โ great for chat-only clients that can't read a repo:
run-baseline-load-testโ Start a baseline run and watch it to completiondiagnose-latency-regressionโ Compare p95 across two runssummarize-runโ Plain-language summary of one runplan-and-build-testโ Turn a goal into project โ test โ upload โ runchoose-executorโ Recommend an engine (k6 / JMeter / Playwright / Selenium)scan-endpoints-for-hotspotsโ Rank likely hotspots from an OpenAPI spec or pasted listsetup-secrets-and-envsโ Wire workspace secrets + multi-env before a rundiagnose-run-failureโ Ranked root cause for a failed runexplain-run-anomaliesโ Explain each detected outlier
Resources
maxoperf://openapiโ The public OpenAPI specmaxoperf://run/{id}โ A run report summary
Try it
- "Load test https://api.example.com/checkout with 500 users for 5 minutes and fail it if p95 goes over 800ms."
- "Scan my repo for the endpoints most worth load-testing, then build and run a test for the riskiest one."
- "Why did run run-0000000001 fail? Check the errors, the logs, and whether the runners actually reached the target load."
Pair it with the brain
The MCP server is the hands. The bundled MaxoPerf agent skill (npx @maxoperf/agent-skill install, included in the Claude plugin, or in agent-skill/ here) is the brain โ it reads your code, finds the hotspots, builds and runs the test, and diagnoses why it broke, driving these tools automatically.
What's in this repo
| Path | What |
|---|---|
.claude-plugin/ |
Claude Code plugin (bundles the MCP connector + the skill) |
agent-skill/ |
A copy of the maxoperf agent skill (canonical home: MaxoPerf/agent-skill) |
packaging/ |
MCP Registry server.json, .mcpb, VS Code / Cursor deeplinks, Codex / ChatGPT setup |
LAUNCHGUIDE.md |
MCP directory listing metadata |
Get started โ ยท Agent skill โ ยท Docs โ
Read-only mirror of the MaxoPerf monorepo. File issues at maxoperf.com.
Install
Add maxoperf to your client. Pick the one you use.
claude mcp add --transport http maxoperf https://app.maxoperf.com/mcpcodex mcp add maxoperf --url https://app.maxoperf.com/mcp{
"mcpServers": {
"maxoperf": {
"url": "https://app.maxoperf.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"maxoperf": {
"type": "http",
"url": "https://app.maxoperf.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"maxoperf": {
"url": "https://app.maxoperf.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"maxoperf": {
"serverUrl": "https://app.maxoperf.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
28 tools
maxoperf exposes 28 tools to a connected agent.
- list_workspaces
- List workspaces visible to the account
- set_active_workspace
- Set the active workspace for the session
- list_projects
- List projects (with edit/delete permissions)
- create_project
- Create a project
- list_tests
- List tests (filter by project / workspace / type)
- get_test
- Get one test + its validation summary
- create_test
- Create a test shell (choose the engine/executor)
- get_test_overview
- Run-history overview for a test
- upload_test_file
- Upload a script/data file in one call (real 3-step presigned flow)
- list_test_files
- List a test's files + upload state
- download_test_file
- Get a short-lived download URL for a file
- start_run
- Launch a load/browser run on managed cloud runners (idempotent)
- get_run_status
- Poll lifecycle status (queued โ running โ passed/failed/cancelled)
- list_runs
- Paginated run history with filters
- cancel_run
- Cancel a run (destructive; hidden in read-only)
- rerun_run
- Re-run from a snapshot or the current test
- add_runners
- Scale a live run up at existing locations
- get_run_results
- KPI overview: throughput, latency percentiles, error rate
- query_run_metrics
- Time-series metrics (latency / throughput / errors / load / health)
- get_run_errors
- Grouped error rows (message / count / code)
- get_run_summary
- Executive summary + which failure criteria tripped
- get_run_error_bodies
- Sampled error request/response bodies + status codes
- get_run_logs
- Error-level engine/system log lines
- get_runner_health
- Runner CPU/mem trend + targetVus vs peakAchievedVus (vuShortfallPct)
- detect_run_anomalies
- Deterministic robust-outlier scan (median/MAD); terminal-gated, low false-positive
- call_platform_api
- Reach any public `/v1/*` endpoint (secrets, environments, schedules, BYOC); admin/internal deny-listed, SSRF-safe
- get_openapi
- The public OpenAPI document
- search_endpoints
- Keyword search over the API to find the right endpoint
Score
77 / 100
Good
- Documentation25/25
- Maintenance16/25
- Trust9/20
- Capability15/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 40 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 28 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jul 10, 2026 |