MCP Perf Suite
⚠️ This project is under active development. Features, modules, and documentation may change frequently. Use at your own risk and please report any issues or suggestions!
Welcome to the MCP Perf Suite — a modular collection of MCP servers designed to support and streamline performance testing workflows.
🚀 PerfPilot Hub — Super MCP Gateway
PerfPilot Hub is the central MCP gateway that gives AI agents a single endpoint into the entire performance testing toolchain. Instead of connecting to 9 separate MCP servers, connect to one:
"Connect your AI agent to PerfPilot Hub and get the full performance testing toolchain through one MCP endpoint."
- 🔌 One connection — 99 tools from 9 servers through a single MCP endpoint
- 🔒 Full isolation — each server runs as its own subprocess with its own venv
- ⚙️ Configurable — enable/disable servers, set transport mode (stdio or http)
- 🔀 Backward compatible — all servers still work standalone
See gateway-mcp/README.md for setup instructions.
📖 Overview
This repository hosts multiple MCP servers, each designed for a specific role in the performance testing lifecycle:
🧪 Test Creation & Execution
-
JMeter MCP Server:
Generate JMeter scripts from Playwright-captured traffic. Convert structured JSON into JMX files, execute JMeter tests, monitor them in real time, and analyze performance results. -
BlazeMeter MCP Server:
Interact with BlazeMeter’s API to manage workspaces, projects, tests, and fetch run results.
📊 Monitoring & Analysis
-
Datadog (Application Performance Monitoring) MCP Server:
Pull and correlate monitoring and metrics data from Datadog to complement load test results. -
Performance Test Analysis MCP Server:
Perform deep analysis of BlazeMeter test results alongside Datadog system metrics (e.g., CPU, Memory). Includes log analysis of both JMeter and Datadog logs, followed by time-series correlation across datasets to detect anomalies and provide actionable insights.
🧠 AI Memory & Learning
- PerfMemory MCP Server:
Persistent memory and lessons-learned layer backed by PostgreSQL with pgvector and Apache AGE. Stores debug sessions, attempts, and vector embeddings of symptoms so AI agents can recall past fixes and avoid repeating mistakes. The Apache AGE knowledge graph enables cross-project issue discovery via structural relationship traversal. Supports OpenAI, Azure OpenAI, and Ollama embedding providers.
📑 Reporting, Collaboration & Artifact Storage
-
Performance Reporting MCP Server:
Generate formatted reports (e.g. PDF, Word, Markdown) from test data and analysis files for presentation and decision-making. -
Confluence MCP Server:
Publish Performance Test reports by converting Markdown files into Confluence XHTML format. -
SharePoint MCP Server:
Upload and archive performance test artifacts (files, folders, reports) to SharePoint document libraries for long-term persistence. Supports dual authentication (Bearer token and cookie-based FedAuth/rtFa), automatic chunked uploads for large files, KQL search, and library discovery. Uses browser-based authentication (no Azure AD app registration required).
💬 Notifications & Communication
- MS Teams MCP Server:
Automate Microsoft Teams notifications for performance testing workflows. Send pre-test alerts before execution, post-test completion summaries with high-level results, and share report links — all driven by AI agents. Uses browser-based authentication (no Azure AD app registration required) with templated notifications and config-driven channel targets.
🔄 Pipeline & Workflow
The MCP servers in this repository (and external integrations like Playwright MCP) form a complete performance testing pipeline. This workflow illustrates how scripts are created, validated, executed, monitored, analyzed, reported, and communicated across teams — with stakeholder notifications at key milestones.
📐 Workflow Diagram
┌────────────────────────┐
│ Playwright MCP │
│ (external, captures │
│ browser traffic) │
└───────────┬────────────┘
│ JSON traffic
▼
┌────────────────────────┐ ┌─────────────────────────┐
│ JMeter MCP Server │◄─────►│ PerfMemory MCP Server │
│ - Generate JMX scripts│ │ - Recall past fixes │
│ - Run smoke tests to │ │ - Store new lessons │
│ validate correctness│ │ - Vector similarity │
└───────────┬────────────┘ │ search (pgvector) │
│ Validated JMX │ - Knowledge graph │
▼ │ (Apache AGE) │
┌────────────────────────┐ └─────────────────────────┘
│ MS Teams MCP Server │
│ (Pre-test notify) │
└───────────┬────────────┘
│
▼
┌────────────────────────┐
│ BlazeMeter MCP Server│
│ - Execute full-scale │
│ performance tests │
│ - Fetch run results │
└───────────┬────────────┘
│ Results & metrics
▼
┌────────────────────────────────┐
│ Datadog MCP Server │
│ (APM metrics correlation) │
└───────────┬────────────────────┘
│
▼
┌────────────────────────────────┐
│ Performance Test Analysis MCP │
│ - Analyze BlazeMeter results │
│ - Analyze Datadog metrics │
│ - Log analysis (JMeter + │
│ Datadog logs) │
│ - Time-series correlation │
└───────────┬────────────────────┘
│
▼
┌────────────────────────────────┐
│ Performance Reporting MCP │
│ (PDF, Word, Markdown reports) │
└────────────────┬───────────────┘
│
┌────────────┼────────────────┐
▼ ▼ ▼
┌────────────────────┐ ┌──────────────────────────┐ ┌──────────────────────┐
│ Confluence MCP │ │ MS Teams MCP Server │ │ SharePoint MCP │
│ (Publish reports │ │ (Post-test notification: │ │ (Archive artifacts │
│ to Confluence; │ │ high-level summary │ │ to document │
│ HITL review cycle)│ │ results & report links) │ │ libraries for │
└────────────────────┘ └──────────────────────────┘ │ long-term storage) │
└──────────────────────┘
🏗️ Architecture & Structure
Each MCP server lives in its own subdirectory within this repo, making it easy to develop, maintain, and deploy independently:
mcp-perf-suite/
├── artifacts/ # Folder that contains the performance test results
├── blazemeter-mcp/ # BlazeMeter MCP server (current)
├── confluence-mcp/ # Confluence MCP server (current)
├── datadog-mcp/ # Datadog MCP server (current)
├── docker/ # Dockerfiles and Compose files (pgvector + Apache AGE)
├── gateway-mcp/ # 🛩️ PerfPilot Hub — Super MCP Gateway (NEW)
├── jmeter-mcp/ # JMeter MCP server (current)
├── msteams-mcp/ # MS Teams notifications MCP (current)
├── perfanalysis-mcp/ # LLM-powered test analysis MCP (current)
├── perfmemory-mcp/ # AI memory & lessons learned MCP (current)
├── perfreport-mcp/ # Reporting and formatting MCP (current)
├── sharepoint-mcp/ # SharePoint artifact storage MCP (current)
├── README.md # This file: repo overview and guidance
└── LICENSE # Repository license (e.g., MIT)
▶️ Getting Started
All MCP servers use FastMCP and Python 3.12+. Each server has its own README with detailed setup instructions, configuration, and tool reference. Navigate to the server's folder and follow its README to get started.
| MCP Server | Folder | README | Prerequisites |
|---|---|---|---|
| PerfPilot Hub | gateway-mcp/ |
README | All servers below set up with venvs |
| JMeter | jmeter-mcp/ |
README | JMeter 5.6+, Playwright MCP (optional) |
| BlazeMeter | blazemeter-mcp/ |
README | BlazeMeter API key |
| Datadog | datadog-mcp/ |
README | Datadog API + App keys |
| Performance Analysis | perfanalysis-mcp/ |
README | BlazeMeter or JMeter test artifacts |
| PerfMemory | perfmemory-mcp/ |
README | PostgreSQL + pgvector + Apache AGE (setup guide), embedding API key |
| Performance Report | perfreport-mcp/ |
README | Analysis artifacts |
| Confluence | confluence-mcp/ |
README | Confluence token (cloud or on-prem) |
| MS Teams | msteams-mcp/ |
README | Microsoft Teams account, Edge or Chrome |
| SharePoint | sharepoint-mcp/ |
README | SharePoint Online account, Edge or Chrome |
Common setup steps:
- Clone this repository
- Navigate to the MCP server folder you want to use
- Copy
.env.exampleto.envand fill in your credentials - Copy
config.example.yamltoconfig.yamland adjust settings as needed - Install dependencies:
pip install -e .(or usepyproject.toml) - Configure the MCP server in your IDE's
mcp.json
For Docker-based dependencies (e.g., PerfMemory's PostgreSQL with pgvector + Apache AGE), see docker/docker-compose-windows.yaml or docker/docker-compose-mac.yaml.
🛣️ Future Roadmap
Upcoming: Schema-Driven Architecture
The MCP Perf Suite is evolving toward a schema-driven architecture that enables true modularity and extensibility. The core principle: standardized data contracts between MCPs ensure that adding new data sources doesn't require changes to downstream consumers.
Future Architecture Vision
┌─────────────────────────────────────────────────────────────────────────────┐
│ DATA SOURCES │
├─────────────────────────────────┬───────────────────────────────────────────┤
│ APM MCP │ Load Test MCP │
│ (replaces Datadog MCP) │ (replaces BlazeMeter MCP) │
│ │ │
│ ┌─────────────────────────┐ │ ┌─────────────────────────┐ │
│ │ Datadog Adapter │ │ │ BlazeMeter Adapter │ │
│ │ New Relic Adapter │ │ │ LoadRunner Adapter │ │
│ │ AppDynamics Adapter │ │ │ Gatling Adapter │ │
│ │ Dynatrace Adapter │ │ │ k6 Adapter │ │
│ │ Splunk APM Adapter │ │ │ Locust Adapter │ │
│ └──────────┬──────────────┘ │ └──────────┬──────────────┘ │
│ │ │ │ │
│ ▼ │ ▼ │
│ ┌─────────────────────────┐ │ ┌─────────────────────────┐ │
│ │ Standardized APM │ │ │ Standardized Load Test │ │
│ │ Output Schema │ │ │ Output Schema │ │
│ │ (metrics, logs, traces)│ │ │ (results, aggregates) │ │
│ └──────────┬──────────────┘ │ └──────────┬──────────────┘ │
├─────────────┴───────────────────┴───────────────┴───────────────────────────┤
│ │
│ STANDARDIZED SCHEMA LAYER │
│ (Source-agnostic data contracts / JSON & CSV schemas) │
│ │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────────────────────┐ │
│ │ Performance Analysis │ │
│ │ MCP │ │
│ │ (source-agnostic) │ │
│ └───────────┬─────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────┐ │
│ │ Performance Report │ │
│ │ MCP │ │
│ │ (source-agnostic) │ │
│ └───────────┬─────────────┘ │
│ │ │
│ ┌──────────────┼──────────────┬──────────────┐ │
│ ▼ ▼ ▼ ▼ │
│ ┌──────────┐ ┌──────────┐ ┌────────────┐ ┌──────────────┐ │
│ │Confluence│ │SharePoint│ │ MS Teams │ │ Other Output │ │
│ │ MCP │ │ MCP │ │ MCP │ │ Adapters │ │
│ └──────────┘ └──────────┘ └────────────┘ └──────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
Key Benefits
| Benefit | Description |
|---|---|
| Extensibility | Add new APM tools or load test platforms by implementing an adapter that outputs the standard schema |
| Loose Coupling | PerfAnalysis and PerfReport MCPs remain unchanged when new data sources are added |
| Community Contributions | Clear schema contracts make it easy for contributors to add support for their preferred tools |
| Maintainability | Changes to source APIs (e.g., Datadog v3) only affect their respective adapter, not the entire pipeline |
Planned Milestones
-
APM MCP Server: Unified entry point supporting multiple APM tools via adapter modules
- Datadog (current implementation migrated as adapter)
- New Relic adapter
- Dynatrace adapter
- AppDynamics adapter
- Splunk APM adapter
-
Load Test MCP Server: Unified entry point supporting multiple load testing tools
- BlazeMeter (current implementation migrated as adapter)
- LoadRunner adapter
- Gatling adapter
- k6 adapter
- Locust adapter
-
Schema Documentation: Formal JSON/CSV schema specifications for data interchange
Other Planned Enhancements
- Enhance the Test Analysis MCP Server utilizing OpenAI GPT or other LLMs for enhanced test result analysis
- Add test results log analysis to identify potential issues or bottlenecks
- Continue refinement of the Reporting MCP Server to produce executive-friendly reports and dashboards from test analysis data
- Enable seamless workflow orchestration across MCP servers for a comprehensive performance testing pipeline
🤝 Contribution
Contributions, ideas, and feature requests are welcome! Please open issues or create pull requests to collaborate.
📜 License
This project is licensed under the MIT License. See the LICENSE file for details.
Created with ❤️ to enable next-gen performance testing, analysis, and reporting powered by FastMCP and AI.
No comments yet
Be the first to share your take.