factory-supervisor-mcp
This server provides 18 specialized tools for real-time factory operations management across system health, machine management, inventory, production, maintenance, KPIs & analytics, predictive intelligence, and AI supervisor assistance. Key capabilities include:
System Health: Check server health with
ping.Machine Management: List all machines and their states (
listMachines) and get detailed telemetry for a specific machine (getMachineStatus).Inventory: View current stock levels (
getInventory) and identify items at or below reorder thresholds (getLowStockItems).Production: Retrieve active orders (
getOrders) and the master production schedule (getProductionSchedule).Maintenance: Access historical and active maintenance logs (
getMaintenanceLogs).KPIs & Analytics: Get key performance indicators like OEE and uptime (
getFactoryKPIs), and generate consolidated factory reports with health scores, risk analysis, and recommendations (analyzeFactory).Predictive Intelligence: Predict machine failure probability and recommended actions (
predictMachineFailure); forecast inventory stockout dates and reorder quantities (forecastInventory); estimate order completion times and delay risks (estimateOrderCompletion); detect production bottlenecks (detectProductionBottlenecks); and forecast factory health trends (predictFactoryHealth).AI Supervisor: Ask natural language questions for automatic analytics routing (
factoryCopilot), generate daily supervisor briefings with top risks (dailySupervisorBrief), and executive summaries with revenue exposure (executiveSummary).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@factory-supervisor-mcpAnalyze factory health and predict any failures for tomorrow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Factory Supervisor MCP Server
An enterprise-grade Model Context Protocol (MCP) server and interactive supervisory dashboard built with NitroStack, Node.js, Express, and React for real-time factory operations management, telemetry analysis, predictive maintenance, material forecasting, order estimation, and AI supervisor copilot capabilities.
Overview
The Factory Supervisor MCP Server connects AI assistants (such as Claude Desktop, Cursor, Antigravity, or custom MCP clients) directly to industrial shop floor telemetry, equipment diagnostics, inventory levels, maintenance schedules, and production orders.
Featuring 10 modular domains and 18 specialized MCP tools alongside an Express REST API and a React + Tailwind Control Center UI, operators and AI assistants can perform diagnostic checks, detect bottlenecks, forecast equipment failures, calculate risk exposure, and interact via natural language to maintain optimal factory productivity.
Related MCP server: Industrial MCP Agent Platform
Key Features
Dual Architecture -- Serves as a standard Model Context Protocol (MCP) server over Stdio transport as well as a full Express REST API and Web Control Center UI.
Real-Time Analytics and Scoring -- Automated numeric health scoring (0-100), machine severity assessment, inventory stockout warnings, and risk exposure calculations.
Predictive Machine Intelligence -- Risk models for failure prediction, material depletion forecasting, bottleneck detection, and order completion estimation.
AI Supervisor Copilot -- Natural language prompt routing, daily supervisor shift briefings, and executive financial summaries.
Web Control Center UI -- Built with Vite, React 18, TailwindCSS, Lucide icons, and Framer Motion for telemetry visualization and AI interaction.
Modules and Tools Reference
Module | MCP Tool Name | Description | Key Inputs |
Health |
| System diagnostic health check ping. | None |
Machines |
| List all factory machines and operational state. | None |
| Get detailed telemetry and job info for a specific machine. |
| |
Inventory |
| Get current stock levels for all parts and reorder points. | None |
| Retrieve inventory items at or below reorder threshold. | None | |
Orders |
| Retrieve active factory production orders and progress. | None |
Maintenance |
| Retrieve historical and active maintenance logs. | None |
Schedule |
| Fetch master production schedule and operational windows. | None |
KPI |
| Retrieve key operational performance indicators (OEE, Uptime, Quality). | None |
Analytics |
| Consolidated factory report with health score, severity levels, risk assessment, and recommendations. | None |
Prediction |
| Predict failure probability, time window, and recommended actions based on vibration and temperature telemetry. |
|
| Predict stockout dates, days remaining, and recommended reorder quantities. |
| |
| Estimate completion time, delay risk, and confidence score for an order. |
| |
| Identify capacity, downtime, and material starvation bottlenecks across all domains. | None | |
| Forecast overall factory health score trends (Today vs. Tomorrow). | None | |
Assistant |
| AI Supervisor assistant routing natural language questions to appropriate analytics and predictive tools. |
|
| Concise daily shift briefing highlighting top risks and priority actions. | None | |
| High-level executive performance summary, financial risk exposure, and strategic guidance. | None |
Project Architecture
factory-supervisor-mcp/
├── src/
│ ├── index.ts Entry point and Express REST API
│ ├── app.module.ts Root AppModule importing 10 feature modules
│ ├── ai/ LLM Provider and MCP Client Integration
│ ├── mock/ Mock telemetry data JSON files
│ └── modules/ 10 MCP Feature Modules
│ ├── analytics/ Consolidated factory analysis
│ ├── assistant/ Copilot, shift brief and executive tools
│ ├── health/ System ping and health checks
│ ├── inventory/ Stock levels and low-stock detection
│ ├── kpi/ OEE, Uptime and Quality metrics
│ ├── machines/ Telemetry and status tools
│ ├── maintenance/ Maintenance history and logs
│ ├── orders/ Work orders and progress tracking
│ ├── prediction/ Prediction tools
│ └── schedule/ Production schedule data
├── ui/ Web Control Center (React + Vite + Tailwind)
│ ├── src/ Dashboard components, APIs, and state
│ └── index.html UI entry point
├── package.json Scripts and dependencies
├── run.bat Batch launcher for Backend + Frontend
├── run-server.bat Batch launcher for MCP Server
└── README.mdQuick Start
Prerequisites -- Node.js v18+ and npm v9+.
Clone the repository and install dependencies:
git clone https://github.com/Heytish-V/factory-supervisor-mcp.git
cd factory-supervisor-mcp
npm installCopy .env.example to .env:
cp .env.example .envOptionally configure your OpenAI API key in .env for LLM Copilot capabilities:
OPENAI_API_KEY=your_openai_api_key_here
REST_PORT=3001One-Click Launcher (Windows) -- Run run.bat to build the project, launch the backend on port 3001, start the frontend on port 5173, and open the browser automatically.
run.batDevelopment Mode -- Start the backend and frontend separately:
npm run dev # Terminal 1: Backend MCP server
npm run ui:dev # Terminal 2: Frontend dashboardProduction Build -- Compile TypeScript, sync mock data, and build UI assets:
npm run build
npm startREST API Endpoints
When running the Express REST API (port 3001 by default), the following endpoints are available:
GET /health-- Diagnostic health check.POST /chat-- Natural language interaction with the Factory Supervisor AI Copilot.GET /api/tools/:toolNameorPOST /api/tools/:toolName-- Direct execution of any of the 18 MCP tools.
MCP Client Integration
Add this MCP server to your MCP client configuration (such as Claude Desktop, Cursor, or Antigravity):
{
"mcpServers": {
"factory-supervisor": {
"command": "node",
"args": ["C:/projecctttt/factory-supervisor-mcp/dist/index.js"]
}
}
}Example Prompts
When interacting through the web UI or an MCP client, try these sample queries:
"What is the overall health score of the factory right now?"
"Are any CNC machines at risk of failing in the next 24 hours?"
"Which inventory items are currently below reorder thresholds?"
"Will order ORD-2026-001 complete on time or experience delays?"
"Generate a daily supervisor shift briefing for the current shift."
"Provide an executive summary of factory performance and financial risk exposure."
License
Private / Enterprise Proprietary
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityCmaintenanceEnables AI assistants to monitor and analyze industrial process data from DCS/SCADA systems via MCP protocol, with domain expert knowledge for anomaly detection and recommendations.Last updated
- Alicense-qualityCmaintenanceMCP server for integrating manufacturing systems (MES/ERP/quality/maintenance) with LLM agents, enabling event ingestion, incident triage, approval workflows, and RAG-based knowledge retrieval.Last updatedMIT
- Flicense-qualityBmaintenanceEnables AI assistants to inspect and automate Autodesk Fusion 360 through MCP, providing tools for CAD modeling, CAM manufacturing, and document management.Last updated
- Flicense-qualityCmaintenanceEnables AI assistants to analyze plant-floor data using OEE, Pareto, SPC, and yield-loss calculations, providing continuous-improvement insights from manufacturing data.Last updated1
Related MCP Connectors
Connect e-commerce and marketing data to AI assistants via MCP.
Intent-first MCP and x402 APIs: 41 image, speech, video, agent ops, web, trust, and loyalty tools.
An AI concierge that turns static forms into adaptive AI conversations. From any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Heytish-V/factory-supervisor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server