machine-maintenance-agent
Enables agents to inspect machine status and sensor anomalies, search maintenance guidance, and create maintenance tickets through controlled MCP tools.
README
Machine Maintenance Agent: MCP Interview Project
This is a small interview-ready project that demonstrates how an agent can use MCP tools to inspect industrial machine data, search maintenance guidance, and create a maintenance ticket when escalation is needed.
The example scenario:
"Machine P-204 is vibrating abnormally. What should I do?"
The agent checks synthetic machine status, reviews recent sensor anomalies, searches a maintenance manual dataset, and optionally creates a ticket.
Why This Is a Good MCP Example
MCP is useful here because the agent does not need direct database or file access. Instead, it receives a controlled tool interface:
get_machine_status_tool(machine_id)get_recent_sensor_anomalies_tool(machine_id, hours)search_maintenance_manual_tool(query, limit)create_maintenance_ticket_tool(machine_id, severity, summary, recommended_action)list_open_tickets_tool(machine_id)
That lets you explain read-only data access, safe write access, tool boundaries, and multi-step agent behavior in one small project.
Project Structure
machine-maintenance-agent/
data/
machines.json # Machine metadata and normal operating ranges
machine_status.json # Current synthetic sensor readings
anomalies.json # Recent detected anomalies
maintenance_manual.json # Small troubleshooting knowledge base
tickets.json # Simple local ticket store
src/
maintenance_tools.py # Core tool logic
mcp_server.py # MCP server exposing tools
agent_demo.py # Transparent agent flow demo
tests/
test_maintenance_tools.py
AGENT_FLOW.md
TOOL_CONTRACTS.md
requirements.txt
README.md
Setup
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
The MCP dependency is pinned to the current stable Python SDK v1 line: mcp[cli]>=1.27,<2.
Run the Demo Agent
From this folder:
python src/agent_demo.py
To create a ticket during the demo:
python src/agent_demo.py --create-ticket
Expected behavior:
- Reads status for
P-204. - Finds vibration and temperature outside normal range.
- Finds high-severity vibration anomaly.
- Searches the maintenance manual for pump vibration guidance.
- Recommends reducing load and inspecting the bearing/coupling area.
- Creates a ticket only if
--create-ticketis used.
Run the MCP Server
python src/mcp_server.py
This starts a stdio MCP server. MCP clients can connect to it and call the exposed tools.
Example MCP client configuration shape:
{
"mcpServers": {
"machine-maintenance-agent": {
"command": "python",
"args": ["src/mcp_server.py"],
"cwd": "/absolute/path/to/machine-maintenance-agent"
}
}
}
Run Tests
python -m unittest discover -s tests
Interview Explanation
Use this short explanation:
"I built an MCP server around a synthetic maintenance system. The agent cannot freely query files or databases. It only gets a few tools: read machine status, read anomalies, search the manual, and create a maintenance ticket. For a vibration complaint on pump P-204, the agent checks live status, sees vibration above threshold, finds recent high-severity anomalies, retrieves relevant manual guidance, and escalates by creating a ticket. This demonstrates controlled enterprise access, tool-based reasoning, and a safe boundary between the LLM and operational systems."
For a more structured walkthrough, see AGENT_FLOW.md and TOOL_CONTRACTS.md.
What Data This Project Uses
- Machine metadata: ID, name, area, criticality, normal operating ranges.
- Machine status: current vibration, temperature, pressure, state, last service date.
- Sensor anomalies: timestamp, signal, value, threshold, severity, description.
- Maintenance manual: symptoms, keywords, recommended actions, safety notes.
- Ticket store: ticket ID, machine ID, severity, summary, recommended action, status.
How to Extend It
Small follow-up improvements for a portfolio version:
- Add a real LLM client that chooses tools dynamically.
- Add SQLite instead of JSON files.
- Add role-based permissions, such as read-only operator access and ticket-write supervisor access.
- Add a simple dashboard showing machine status and open tickets.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.