Server data from the Official MCP Registry
MCP server for Runframe incident management covering incidents, on-call, postmortems, and more.
MCP server for Runframe incident management covering incidents, on-call, postmortems, and more.
Valid MCP server (2 strong, 1 medium validity signals). 3 known CVEs in dependencies (0 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.
5 files analyzed · 4 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: RUNFRAME_API_KEY
Environment variable: RUNFRAME_API_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-runframe-runframe-mcp-server": {
"env": {
"RUNFRAME_API_KEY": "your-runframe-api-key-here",
"RUNFRAME_API_URL": "your-runframe-api-url-here"
},
"args": [
"-y",
"@runframe/mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
Runframe is the complete incident lifecycle platform for engineering teams, covering incident response, on-call, and status pages. This MCP server lets you manage those workflows from your IDE or AI agent.
17 tools covering incidents, on-call, services, postmortems, teams, and people lookup. Requires Node.js 20+.
npx, no server to deploy for local useYour IDE / Agent
↓ (stdio or HTTP)
MCP Server (this package)
↓ (HTTPS, scoped API key)
Runframe API
The server is stateless. It translates MCP tool calls into Runframe API requests, scoped by your API key permissions. No data is stored locally.
Ask your agent:
runframe_acknowledge_incidentrunframe_get_current_oncallrunframe_create_postmortemrunframe_page_someonerunframe_list_incidents with severity filterrunframe_find_userGet your API key from settings inside Runframe.io, then add to your agent:
Claude Code:
claude mcp add runframe -e RUNFRAME_API_KEY=rf_your_key_here -- npx -y @runframe/mcp-server
Cursor (~/.cursor/mcp.json) · VS Code (.vscode/mcp.json) · Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"runframe": {
"command": "npx",
"args": ["-y", "@runframe/mcp-server"],
"env": { "RUNFRAME_API_KEY": "rf_your_key_here" }
}
}
}
Other MCP clients: Add the JSON config above to your client's MCP config file.
Interactive setup wizard:
npx @runframe/mcp-server --setup
| Variable | Required | Default | Description |
|---|---|---|---|
RUNFRAME_API_KEY | Yes | — | API key (starts with rf_) |
RUNFRAME_API_URL | No | https://runframe.io | API base URL |
MCP_ACCESS_TOKEN | HTTP only | — | Bearer token for HTTP transport. Comma-separated for rotation (new_token,old_token). |
stdio (default) — used by MCP clients like Claude Code and Cursor. No network exposure. This is what the install commands above configure.
Streamable HTTP — for containerized or remote deployments. Requires MCP_ACCESS_TOKEN for bearer auth:
RUNFRAME_API_KEY=rf_... \
MCP_ACCESS_TOKEN=your_token \
npx @runframe/mcp-server --transport http --port 3100 --host 127.0.0.1
Responsibility is split across three boundaries:
RUNFRAME_API_KEY.The server stores nothing. It is a pass-through to the Runframe API.
| Tool | Scopes | Description |
|---|---|---|
runframe_list_incidents | incidents:read | List incidents with filters and pagination |
runframe_get_incident | incidents:read | Get incident by ID or number |
runframe_create_incident | incidents:write | Create an incident |
runframe_update_incident | incidents:write | Update title, description, severity, or assignment |
runframe_change_incident_status | incidents:write | Move to a new status (new, investigating, fixing, monitoring, resolved, closed) |
runframe_acknowledge_incident | incidents:write | Acknowledge (auto-assigns, tracks SLA) |
runframe_add_incident_event | incidents:write | Add a timeline entry |
runframe_escalate_incident | incidents:write | Escalate to the next policy level |
runframe_page_someone | incidents:write | Page a responder via Slack or email |
| Tool | Scopes | Description |
|---|---|---|
runframe_get_current_oncall | oncall:read | Who is on call right now |
| Tool | Scopes | Description |
|---|---|---|
runframe_list_services | services:read | List services |
runframe_get_service | services:read | Get service details |
| Tool | Scopes | Description |
|---|---|---|
runframe_create_postmortem | postmortems:write | Create a postmortem |
runframe_get_postmortem | postmortems:read | Get postmortem for an incident |
| Tool | Scopes | Description |
|---|---|---|
runframe_list_teams | teams:read | List teams |
runframe_get_escalation_policy | oncall:read | Get escalation policy for a severity level |
| Tool | Scopes | Description |
|---|---|---|
runframe_find_user | users:read | Search users by name or email, with optional inactive-user support for historical lookups |
This MCP server follows the public Runframe direct API contract.
service_ids containing public service keys like SER-00001, not internal UUIDs.runframe_get_service now looks up services by public service_key, not UUID.INC-2026-001 in path parameters.team_name.runframe_create_incident accepts an optional idempotency_key, which is forwarded as the Idempotency-Key header for retry-safe creates.runframe_create_incident defaults severity to SEV2 when omitted, matching the V1 API.title must be 1-200 chars, description maxes at 10000 chars, and service_ids allows at most 50 items.runframe_list_services to discover valid service_key values before creating incidents.runframe_page_someone now uses the latest V1 delivery contract: email, channels, and optional message.incident_number and snake_case nested fields like users_affected, owner_email, and time_to_acknowledge.runframe_find_user to resolve a person name to an email address before filtering incidents by assigned_to or resolved_by.include_inactive=true on runframe_find_user when you need to resolve former employees in historical incident queries.is_active=true or is_active=false on runframe_find_user when you need an explicit V1 active-state filter.runframe_list_teams with search to resolve the exact team_name before filtering incidents.The Docker image runs HTTP transport by default on port 3100:
docker build -t runframe-mcp-server .
docker run -e RUNFRAME_API_KEY=rf_... -e MCP_ACCESS_TOKEN=your_token -p 3100:3100 runframe-mcp-server
HTTP mode is meant for private networks. If you put it on the internet:
MCP_ACCESS_TOKEN regularly. Pass old and new tokens comma-separated for zero-downtime swaps.The Runframe API enforces rate limits server-side. If you hit a limit, tools return a 429 error with a retry hint. For HTTP transport deployments, your reverse proxy can add additional request-level throttling.
MCP_ACCESS_TOKEN accepts comma-separated tokens:
MCP_ACCESS_TOKEN=new_token,old_tokennew_tokenMCP_ACCESS_TOKEN=new_tokenIssues and PRs welcome at github.com/runframe/runframe-mcp-server.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace · Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm — conversationally
by mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.