MCP server for Artillery 2.x — full flags, Fargate, raw-text parser, project launcher (MIT)
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y @kosiakmd/artillery-mcp
MCP client config
{
"mcpServers": {
"artillery-mcp": {
"command": "npx",
"args": [
"-y",
"@kosiakmd/artillery-mcp"
]
}
}
}Run
docker run -i --rm docker.io/kosiakmd/artillery-mcp:0.1.7
MCP client config
{
"mcpServers": {
"artillery-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kosiakmd/artillery-mcp:0.1.7"
]
}
}
}Run
docker run -i --rm ghcr.io/kosiakmd/artillery-mcp:0.1.7
MCP client config
{
"mcpServers": {
"artillery-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/kosiakmd/artillery-mcp:0.1.7"
]
}
}
}