Skip to main content

Predictive Maintenance MCP Server

Python 3.11+ DOI Tests codecov License: MIT

Give your AI assistant evidence-based vibration diagnostics — machinery fault detection, ISO-cited severity, and diagnostic reports built to support and accelerate expert decision-making.

An open-source MCP server that turns LLMs into condition monitoring assistants for reliability engineers. Its core design rule: the server refuses to guess. No diagnosis is ever inferred from filenames or statistical parameters alone — a fault indication requires matching spectral evidence. Every severity claim cites ISO 20816-3, and the evaluative wording in reports is authored by the server, not improvised by the model. The AI orchestrates the analysis and presents the evidence — detected fault frequencies, matched fault patterns, severity zones — while the final judgment stays with the engineer. Also available as a Claude Code plugin with 8 diagnostic skills.


See It in Action

Predictive Maintenance MCP — diagnostic workflow in Claude Desktop

Full diagnostic workflow: load signal → spectral analysis → fault detection → severity assessment → report generation


Choose Your Path

You are Start here
Reliability / maintenance engineer — diagnostics in plain language, no coding Engineer's Quickstart
AI / MCP developer — run, integrate, and extend the server Developer's Quickstart · Quick Start below
Researcher / evaluator — how the numbers are measured Benchmark Methodology · Benchmark below

Quick Start

Get running in ~3 minutes. On Windows, one script wires everything into Claude Desktop — it installs the venv, pre-compiles dependencies, and writes claude_desktop_config.json for you (OneDrive / cloud-sync paths included):

git clone https://github.com/LGDiMaggio/predictive-maintenance-mcp.git
cd predictive-maintenance-mcp
.\setup_claude.ps1

Restart Claude Desktop, then try:

"Load real_train/OuterRaceFault_1.csv and check if the bearing is healthy."

Manual config (macOS / Linux / other MCP clients)

Install the package:

pip install predictive-maintenance-mcp

Find the full path to uvx (which uvx on macOS/Linux, where uvx on Windows), then add to your client config — ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "predictive-maintenance": {
      "command": "/full/path/to/uvx",
      "args": ["predictive-maintenance-mcp"],
      "env": { "UV_LINK_MODE": "copy" }
    }
  }
}

Why the full path? Claude Desktop launches servers with a minimal PATH that often omits user-local tool directories (e.g. ~/.local/bin). Using the full path to uvx avoids a silent "command not found" failure. On Windows the typical path is C:\Users\<you>\.local\bin\uvx.exe.

More options: install from source · VS Code setup · Docker / HTTPS deployment · use with local LLMs (Ollama)


Benchmark

A blind, reproducible diagnostic-accuracy benchmark on the public CWRU Bearing Data Center dataset (12 kHz drive-end subset: 60 fault records + 4 normal baselines). Fault labels never reach the system under test — signals enter under opaque ids, a separate scorer is the only label reader, and blindness, checksum integrity, and determinism are enforced by CI-run guard tests, not prose. Results are stratified by the per-record diagnosability grades of the Smith & Randall (2015) reference study, so records that study found undiagnosable by any classical method are reported separately instead of inflating or deflating the headline.

On records the reference study grades clearly diagnosable (Y1+Y2, 44 records): characteristic fault frequency detected on 44/44, correct fault ranked first on 34/44 (77.3%), and 9/9 on the textbook-signature (Y1) stratum. On the 4 healthy baselines, 2 records raised a false indication under the same criterion.

The numbers above are read from the committed, re-runnable artifact (results.json) and drift-guarded by CI: every value is bound to its key in the artifact, and a mismatch fails the build. Methodology, blind protocol, and honest-benchmarking notes: docs/benchmark-methodology.md. Reproduce with:

python -m benchmarks.cwru all

What Can It Do?

Point the AI at a vibration signal → get the evidence behind the fault — detected frequencies, matched fault patterns, ISO-cited severity — to support your call.

You say The AI does
"Is this bearing healthy?" Loads the signal, runs spectral analysis, surfaces matching fault-frequency evidence, cites the ISO 20816-3 severity zone
"Generate a full diagnostic report" Produces an interactive HTML report with charts, fault markers, and server-authored severity wording
"Extract specs from test_pump_manual.pdf and diagnose the signal" Reads the equipment manual, looks up the bearing model, calculates expected fault frequencies, flags which ones the signal actually shows
"Train an anomaly detector on my healthy baselines, then flag anomalies" Trains a model on your normal data, scores new signals, flags outliers for your review

The AI doesn't guess — it calls 37 specialized MCP endpoints (34 tools + 3 prompts) running locally on your machine. Every signal is referenced by a single signal_id handle from load to report. Your data never leaves your infrastructure.

Full endpoint reference, grouped by category: Tool Catalog.


Claude Code Plugin

The project includes a plugin for Claude Code with domain-specific skills that activate automatically during conversation.

/plugin marketplace add LGDiMaggio/predictive-maintenance-mcp
/plugin install predictive-maintenance@predictive-maintenance-marketplace

Claude Code Plugin — skills, agents, and slash commands in action

The plugin adds 8 skills that activate automatically based on context (bearing-diagnosis, gear-diagnosis, quick-screening, report-generation, anomaly-detection, signal-management, documentation-search, prognostics), 2 agents that run multi-step diagnostic workflows end-to-end and hand you the evidence (diagnostic-pipeline, signal-explorer), and 3 commands for quick entry points (/pm-diagnose, /pm-screen, /pm-report).

Full skill, agent, and command reference: Plugin README.


Reports

All analysis tools generate interactive HTML reports you can open in any browser — pan, zoom, hover for details. Also supports structured Word (.docx) exports.

Report examples

Envelope Analysis Report

ISO Severity Assessment

Report Type What it shows
Frequency spectrum Peak detection, harmonic markers
Envelope analysis Bearing fault frequency matching
Severity assessment Vibration health zones (ISO 20816-3)
Word document Full diagnostic narrative with embedded charts
PCA visualization Multi-signal anomaly clustering
Feature comparison Side-by-side signal feature analysis

Sample Data Included

The project ships with 20 real bearing vibration signals from production machinery tests — ready to use out of the box: a training set (2 healthy baselines + 12 fault signals, inner and outer race) and a test set (1 healthy baseline + 5 fault signals).

Try: "Load real_train/OuterRaceFault_1.csv and diagnose the bearing fault."

Full dataset documentation: data/README.md


Architecture

          YOU (natural language)
               │
               v
     LLM (Claude, GPT, Ollama...)
     understands intent, selects tools
               │
               v  ── Model Context Protocol ──
    ┌──────────────────────────────┐
    │    Predictive Maintenance    │
    │         MCP Server           │
    │                              │
    │  Signal Analysis    Reports  │
    │  Fault Detection    ML       │
    │  Severity Rating    RAG Docs │
    └──────────────────────────────┘
               │
               v
       YOUR DATA (stays local)
    signals · manuals · models

The codebase follows a modular architecture organized around the ISO 13374 Six-Block Diagnostic standard — signal acquisition, processing, diagnostics, prognostics, and decision support as separate sub-packages. Standards implemented: ISO 13374, ISO 20816-3, MIMOSA OSA-CBM. Module-level detail: Architecture guide.

Key design choices:

  • Privacy-first — raw vibration data never leaves your machine; only computed results flow to the LLM
  • LLM-agnostic — works with Claude, ChatGPT, Microsoft Copilot Studio, or any MCP-compatible client. Use Ollama for fully air-gapped deployments
  • Modular — use only the tools you need, extend with your own

Documentation

Guide For
Quickstart for Engineers Get results fast, no coding required
Quickstart for Developers Understand MCP, extend the server
Tool Catalog Every MCP endpoint, grouped by category
Adapter Guide Bring vendor/DAQ raw data in via explicit declarations
Plugin README Claude Code plugin installation and usage
HTTPS Deployment Docker + HTTPS for enterprise environments
Ollama Guide Use with local LLMs (fully air-gapped)
Architecture ISO 13374 block mapping and module design
Benchmark Methodology How the CWRU diagnostic benchmark is measured
Examples Complete diagnostic workflows
Installation Detailed setup and troubleshooting
Contributing How to contribute (all skill levels welcome)
Changelog Version history

Testing

85%+ test coverage, enforced as a CI minimum, across Windows, macOS, and Linux (Python 3.11 & 3.12) — the current measured figure is on the codecov badge above.

pytest                                  # run all tests
pytest --cov=src --cov-report=html      # with coverage report

20+ test files covering signal analysis, fault detection, severity assessment, ML models, report generation, RAG search, and real bearing fault data validation.


Roadmap

  • 37 MCP endpoints (34 tools, 3 prompts) with modular architecture and a single signal_id handle
  • Claude Code plugin (8 skills, 2 agents, 3 commands)
  • 85%+ test coverage enforced in CI, CI/CD on 3 platforms
  • Docker + SSE/HTTP transport for enterprise deployment
  • Semantic document search (FAISS + TF-IDF)
  • Blind, reproducible diagnostic benchmark on the CWRU dataset (extensible to Paderborn)
  • Customizable severity thresholds
  • Remaining useful life (RUL) estimation from repeated measurements (linear, exponential, Kalman)
  • Trend analysis and degradation onset detection
  • Multi-signal trending and historical comparison
  • Real-time streaming (MQTT/Kafka)
  • Fleet dashboard for multi-asset monitoring
  • CMMS integration (SAP, Maximo, Infor)

Ideas? Open a discussion or create an issue.


Are you using this?

I'd genuinely love to know. Whether you ran it on real machinery or just tried the sample data, drop a line in Discussions — one sentence about your machine or use case is enough. Real-world feedback directly shapes what gets built next.


Related

claude-stwinbox-diagnostics — Extends this project by connecting a physical edge sensor (STEVAL-STWINBX1) to Claude via MCP, with Claude Skills for guided condition monitoring. Same analysis engine, real hardware, operator-friendly reports.


Contributing

Contributions welcome from everyone — not just programmers. Domain experts, technical writers, and testers are equally valued. See CONTRIBUTING.md for paths tailored to your background.

Quick start: browse Issues for good first issue or help wanted labels.


Citation

@software{dimaggio_predictive_maintenance_mcp_2025,
  title   = {Predictive Maintenance MCP Server},
  author  = {Di Maggio, Luigi Gianpio},
  year    = {2025},
  version = {0.13.0},
  url     = {https://github.com/LGDiMaggio/predictive-maintenance-mcp},
  doi     = {10.5281/zenodo.17611542}
}

License

MIT — see LICENSE. Sample data is CC BY-NC-SA 4.0 (non-commercial); for commercial use, replace with your own machinery data.

Acknowledgments

MCP Python SDK (descended from FastMCP) · Model Context Protocol by Anthropic · Sample data from MathWorks · Core development assisted by Claude


An open-source predictive maintenance AI agent and condition monitoring copilot — built to support reliability engineers and the developer community.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

predictive_maintenance_mcp-0.13.0.tar.gz (67.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

predictive_maintenance_mcp-0.13.0-py3-none-any.whl (187.4 kB view details)

Uploaded Python 3

File details

Details for the file predictive_maintenance_mcp-0.13.0.tar.gz.

File metadata

File hashes

Hashes for predictive_maintenance_mcp-0.13.0.tar.gz
Algorithm Hash digest
SHA256 a064413a8a2af334cc1807c082c10b1f7a5d21c40ba2f0516f0a4931d6be893a
MD5 9a7df152669e25a58ec03cb20554783b
BLAKE2b-256 2ce21d6ad8bcf70bc795d24db97196ea4fe75ec4704701785bff3db3c95f0c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for predictive_maintenance_mcp-0.13.0.tar.gz:

Publisher: publish.yml on LGDiMaggio/predictive-maintenance-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file predictive_maintenance_mcp-0.13.0-py3-none-any.whl.

File metadata

File hashes

Hashes for predictive_maintenance_mcp-0.13.0-py3-none-any.whl
Algorithm Hash digest
SHA256 010ab02533f9e39ea58ec4a97f57bd673767a4486d6429795d34e5cce6048b00
MD5 256d9c3c4d399278e8bd2975e7ad29e3
BLAKE2b-256 eaf30a95e73e933718d9af6d53c38e604d0573ebd1d343662aebae80be8d89a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for predictive_maintenance_mcp-0.13.0-py3-none-any.whl:

Publisher: publish.yml on LGDiMaggio/predictive-maintenance-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page