production-master
OfficialClick 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., "@production-masterinvestigate the high latency on the payment endpoint"
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.
Trigger, stream, and review autonomous production-incident investigations without leaving your editor.
Production Master is a thin client for the Production Master hosted service. You point it at an incident, it starts an investigation on the service, and the results stream back into your IDE in real time. When the investigation proposes an action that changes something, you approve or reject it — nothing runs without your sign-off.
The investigation itself runs entirely on the hosted service. This repository is the thin client: it handles device-code login, starts a run, streams live progress, renders the report, and relays your approve/reject decisions. No investigation logic, model provider SDKs, or credentials for the analysis live here.
Features
IDE-native investigations — start and follow a run from Claude Code, Cursor, Codex, or OpenCode. No context switch to a separate dashboard.
Live streaming — progress, findings, and the final report stream over Server-Sent Events (SSE) as the hosted service works.
Human-gated actions — every proposed action that mutates a system is surfaced for explicit approval; you approve or reject before anything happens.
Multi-IDE support — one thin client, registered through each editor's native extension mechanism (plugin, MCP config, or config file).
Related MCP server: Debugging MCP Server
Prerequisites
Node.js 22 (pinned in
.nvmrc)An account on the Production Master hosted service — the client authenticates to it via device-code login.
One of the supported editors: Claude Code, Cursor, Codex, or OpenCode.
Quick Start
Across every editor the flow is the same: register the client → log in with a device code → start an investigation. Point the client at your service with PM_SERVICE_URL (default https://api.productionmaster.ai).
Build the client first (workspaces compile the host-neutral core and each adapter):
nvm use && npm ci && npm run buildClaude Code
Claude Code is wired end-to-end. Install the plugin (.claude-plugin/plugin.json + commands/, backed by packages/adapter-claude-code), then use the slash commands:
/plugin install production-master
/login
/investigate PROJ-1234/connect <id>, /update <id> <tool> [jsonArgs], and /logout are also available. Each command execs the built thin-client binary; nothing about the investigation runs locally.
Cursor · Codex · OpenCode
Each of these editors registers the client as an MCP server that it spawns from the built binary. After npm run build, the config file in this repo points the editor at the client's mcp entry point:
Editor | Registration file | Backed by |
Cursor | ||
Codex | ||
OpenCode |
Log in once with node packages/adapter-<editor>/dist/cli.js login, then start investigations from the editor's own agent — it calls the client's investigation tools over MCP. Point the client at your service with PM_SERVICE_URL (default https://api.productionmaster.ai); secrets are ${ENV} references only, never literals.
Full walkthrough: docs/user/quick-start.md.
Architecture
The client is a thin transport-and-render layer. All investigation logic lives on the hosted service; the client talks to it over HTTPS (control) and SSE (streaming).
flowchart LR
subgraph IDE["Your IDE"]
C["production-master<br/>thin client"]
end
S["Production Master<br/>hosted service"]
C -- "device-code login (HTTPS)" --> S
C -- "start / approve / reject (HTTPS)" --> S
S -- "live progress + report (SSE)" --> CThe client owns four concerns: auth (device-code login + token storage), MCP transport (exposing thin-client commands to the editor), streaming (consuming SSE and rendering progress), and render adapters (per-IDE presentation). It owns none of the analysis.
Documentation
Doc | Purpose |
Install, log in, run your first investigation | |
Common workflows — start, connect, approve/reject | |
Thin-client command reference | |
Auth, service URL, and MCP registration issues | |
Editors and versions the client is validated against | |
How to contribute | |
Release history |
License
MIT — see LICENSE.
This server cannot be installed
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
- AlicenseAqualityFmaintenanceUnleashes LLM-powered agents to autonomously execute and debug web apps directly in your code editor, with features like webapp navigation, network traffic capture, and console error collection.Last updated21,240Apache 2.0
- FlicenseAqualityDmaintenanceEnables LLMs to automatically diagnose coding errors through codebase search, test execution, and live debugger integration (DAP/V8 CDP). Provides a secure, policy-gated environment for investigating failures while preventing destructive operations.Last updated9
- Alicense-qualityCmaintenanceEnables AI agents to investigate backend incidents by executing runbooks that gather evidence from observability and storage systems.Last updated259MIT
- Flicense-qualityCmaintenanceEnables IDE integration with a multi-agent AI pipeline for solving, reviewing, and optimizing code through adversarial peer review and security filtering.Last updated
Related MCP Connectors
Let AI operate servers without SSH. Choose actions, approve risky changes, and audit every step.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
AI agent run monitoring with incident replay and SLA receipts.
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/ProductionMasterAI/production-master'
If you have feedback or need assistance with the MCP directory API, please join our Discord server