Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

Β© 2026 TrackMCP. All rights reserved.

Built with ❀️ by Krishna Goyal

    Jmeter Mcp Server

    ✨ JMeter Meets AI Workflows: Introducing the JMeter MCP Server! 🀯

    47 stars
    Python
    Updated Oct 21, 2025
    apache-jmeter
    jmeter
    mcp
    model-context-protocol-servers
    performance

    Table of Contents

    • πŸ“‹ Features
    • JMeter Execution
    • Test Results Analysis
    • πŸ› οΈ Installation
    • Local Installation
    • πŸ’» MCP Usage
    • JMeter Execution Tools
    • Test Results Analysis Tools
    • πŸ—οΈ MCP Configuration
    • ✨ Use Cases
    • Test Execution
    • Test Results Analysis
    • πŸ›‘ Error Handling
    • πŸ“Š Test Results Analyzer
    • Parser Module
    • Metrics Calculator
    • Bottleneck Analyzer
    • Insights Generator
    • Visualization Engine
    • πŸ“ Example Usage

    Table of Contents

    • πŸ“‹ Features
    • JMeter Execution
    • Test Results Analysis
    • πŸ› οΈ Installation
    • Local Installation
    • πŸ’» MCP Usage
    • JMeter Execution Tools
    • Test Results Analysis Tools
    • πŸ—οΈ MCP Configuration
    • ✨ Use Cases
    • Test Execution
    • Test Results Analysis
    • πŸ›‘ Error Handling
    • πŸ“Š Test Results Analyzer
    • Parser Module
    • Metrics Calculator
    • Bottleneck Analyzer
    • Insights Generator
    • Visualization Engine
    • πŸ“ Example Usage

    Documentation

    πŸš€ JMeter MCP Server

    This is a Model Context Protocol (MCP) server that allows executing JMeter tests through MCP-compatible clients and analyzing test results.

    [!IMPORTANT]

    πŸ“’ Looking for an AI Assistant inside JMeter? πŸš€

    Check out Feather Wand

    Anthropic

    Cursor

    Windsurf

    πŸ“‹ Features

    JMeter Execution

    • πŸ“Š Execute JMeter tests in non-GUI mode
    • πŸ–₯️ Launch JMeter in GUI mode
    • πŸ“ Capture and return execution output
    • πŸ“Š Generate JMeter report dashboard

    Test Results Analysis

    • πŸ“ˆ Parse and analyze JMeter test results (JTL files)
    • πŸ“Š Calculate comprehensive performance metrics
    • πŸ” Identify performance bottlenecks automatically
    • πŸ’‘ Generate actionable insights and recommendations
    • πŸ“Š Create visualizations of test results
    • πŸ“‘ Generate HTML reports with analysis results

    πŸ› οΈ Installation

    Local Installation

    1. Install [uv](https://github.com/astral-sh/uv):

    2. Ensure JMeter is installed on your system and accessible via the command line.

    ⚠️ Important: Make sure JMeter is executable. You can do this by running:

    bash
    chmod +x /path/to/jmeter/bin/jmeter

    3. Install required Python dependencies:

    bash
    pip install numpy matplotlib

    4. Configure the .env file, refer to the .env.example file for details.

    bash
    # JMeter Configuration
    JMETER_HOME=/path/to/apache-jmeter-5.6.3
    JMETER_BIN=${JMETER_HOME}/bin/jmeter
    
    # Optional: JMeter Java options
    JMETER_JAVA_OPTS="-Xms1g -Xmx2g"

    πŸ’» MCP Usage

    1. Connect to the server using an MCP-compatible client (e.g., Claude Desktop, Cursor, Windsurf)

    2. Send a prompt to the server:

    code
    Run JMeter test /path/to/test.jmx

    3. MCP compatible client will use the available tools:

    JMeter Execution Tools

    • πŸ–₯️ execute_jmeter_test: Launches JMeter in GUI mode, but doesn't execute test as per the JMeter design
    • πŸš€ execute_jmeter_test_non_gui: Execute a JMeter test in non-GUI mode (default mode for better performance)

    Test Results Analysis Tools

    • πŸ“Š analyze_jmeter_results: Analyze JMeter test results and provide a summary of key metrics and insights
    • πŸ” identify_performance_bottlenecks: Identify performance bottlenecks in JMeter test results
    • πŸ’‘ get_performance_insights: Get insights and recommendations for improving performance
    • πŸ“ˆ generate_visualization: Generate visualizations of JMeter test results

    πŸ—οΈ MCP Configuration

    Add the following configuration to your MCP client config:

    json
    {
        "mcpServers": {
          "jmeter": {
            "command": "/path/to/uv",
            "args": [
              "--directory",
              "/path/to/jmeter-mcp-server",
              "run",
              "jmeter_server.py"
            ]
          }
        }
    }

    ✨ Use Cases

    Test Execution

    • Run JMeter tests in non-GUI mode for better performance
    • Launch JMeter in GUI mode for test development
    • Generate JMeter report dashboards

    Test Results Analysis

    • Analyze JTL files to understand performance characteristics
    • Identify performance bottlenecks and their severity
    • Get actionable recommendations for performance improvements
    • Generate visualizations for better understanding of results
    • Create comprehensive HTML reports for sharing with stakeholders

    πŸ›‘ Error Handling

    The server will:

    • Validate that the test file exists
    • Check that the file has a .jmx extension
    • Validate that JTL files exist and have valid formats
    • Capture and return any execution or analysis errors

    πŸ“Š Test Results Analyzer

    The Test Results Analyzer is a powerful feature that helps you understand your JMeter test results better. It consists of several components:

    Parser Module

    • Supports both XML and CSV JTL formats
    • Efficiently processes large files with streaming parsers
    • Validates file formats and handles errors gracefully

    Metrics Calculator

    • Calculates overall performance metrics (average, median, percentiles)
    • Provides endpoint-specific metrics for detailed analysis
    • Generates time series metrics to track performance over time
    • Compares metrics with benchmarks for context

    Bottleneck Analyzer

    • Identifies slow endpoints based on response times
    • Detects error-prone endpoints with high error rates
    • Finds response time anomalies and outliers
    • Analyzes the impact of concurrency on performance

    Insights Generator

    • Provides specific recommendations for addressing bottlenecks
    • Analyzes error patterns and suggests solutions
    • Generates insights on scaling behavior and capacity limits
    • Prioritizes recommendations based on potential impact

    Visualization Engine

    • Creates time series graphs showing performance over time
    • Generates distribution graphs for response time analysis
    • Produces endpoint comparison charts for identifying issues
    • Creates comprehensive HTML reports with all analysis results

    πŸ“ Example Usage

    code
    # Run a JMeter test and generate a results file
    Run JMeter test sample_test.jmx in non-GUI mode and save results to results.jtl
    
    # Analyze the results
    Analyze the JMeter test results in results.jtl and provide detailed insights
    
    # Identify bottlenecks
    What are the performance bottlenecks in the results.jtl file?
    
    # Get recommendations
    What recommendations do you have for improving performance based on results.jtl?
    
    # Generate visualizations
    Create a time series graph of response times from results.jtl

    Similar MCP

    Based on tags & features

    • FH

      Fhir Mcp Server

      PythonΒ·
      55
    • MC

      Mcp Aoai Web Browsing

      PythonΒ·
      30
    • AL

      Alibaba Cloud Ops Mcp Server

      PythonΒ·
      78
    • FA

      Fal Mcp Server

      PythonΒ·
      8

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScriptΒ·
      22.1k
    • SE

      Serena

      PythonΒ·
      14.5k
    • MC

      Mcp Playwright

      TypeScriptΒ·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScriptΒ·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • FH

      Fhir Mcp Server

      PythonΒ·
      55
    • MC

      Mcp Aoai Web Browsing

      PythonΒ·
      30
    • AL

      Alibaba Cloud Ops Mcp Server

      PythonΒ·
      78
    • FA

      Fal Mcp Server

      PythonΒ·
      8

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScriptΒ·
      22.1k
    • SE

      Serena

      PythonΒ·
      14.5k
    • MC

      Mcp Playwright

      TypeScriptΒ·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScriptΒ·
      3.0k