rollout-playbook-mcp
Exposes deployment playbooks as MCP resources and tools, enabling AI assistants to search best practices and generate tailored rollout plans.
README
rollout-playbook-mcp
An MCP (Model Context Protocol) server that turns enterprise deployment best practices into resources and tools an AI assistant can use directly, instead of leaving them as static documents nobody re-reads once a project starts.
Why I built this
I spent years leading the teams that designed and deployed telco networks in the voice and wireless space, hundreds of production deployments for carriers worldwide. The hardest part was never the individual project. It was capturing what we learned each time and getting it into the hands of the next team fast enough to matter, so my team documented the patterns and built internal tools around them.
This is a small, deliberately scoped version of that same idea, rebuilt with AI in mind: instead of a static playbook doc that lives in a wiki nobody opens, the patterns are exposed as MCP resources an assistant can read, and as tools that generate a tailored plan on request. It's a toy compared to a real enterprise deployment practice, but the underlying instinct is the same one I've applied throughout my career and am now applying to Navi, an enterprise agentic AI platform I lead at IBM/HashiCorp: get expert knowledge out of a document and into the hands of whoever needs it, exactly when they need it.
What it does
Resources — four playbooks, exposed as browsable documents:
- Rollout Checklist (phase-by-phase deployment checklist)
- Risk Assessment Framework (score a deployment's risk before committing to a plan)
- Stakeholder RACI Template (who owns what, by phase)
- Migration Cutover Plan (the specific moment traffic/data/users move to the new system)
Tools:
search_playbooks(query)— keyword search across all four playbooks, returns matching sectionsgenerate_rollout_plan(project_type, team_size, risk_level)— generates a tailored rollout plan by combining the playbooks based on your inputs
Prompt:
assess_deployment_risk(project_description)— a pre-built prompt template that walks through the risk framework for a given project
Quick start
git clone https://github.com/<your-username>/rollout-playbook-mcp.git
cd rollout-playbook-mcp
npm install
npm run build
npm start
The server communicates over stdio, so it's meant to be launched by an MCP client (Claude Desktop, Cursor, etc.), not run standalone in a terminal for interactive use.
Connecting it to an MCP client
Add to your client's MCP config (for example claude_desktop_config.json or a project's .mcp.json):
{
"mcpServers": {
"rollout-playbook": {
"command": "node",
"args": ["/absolute/path/to/rollout-playbook-mcp/dist/index.js"]
}
}
}
Architecture
- Built on
@modelcontextprotocol/sdk(TypeScript), using the high-levelMcpServerAPI - Playbook content is authored as markdown in
/playbooks, then compiled intosrc/playbooks.tsas embedded string constants, so the built package is self-contained and works overnpxwithout relying on relative file paths at runtime - Transport is stdio, the standard choice for a locally-run MCP server invoked by a desktop client
Project structure
rollout-playbook-mcp/
├── playbooks/ # Source markdown for each playbook
├── src/
│ ├── playbooks.ts # Generated: embedded playbook content
│ └── index.ts # Server: resources, tools, prompt
├── package.json
├── tsconfig.json
└── README.md
License
MIT
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.