oci ghcr.io/wyre-technology/rootly-mcp:v1.2.4stdioupdated 8d ago
MCP server for the Rootly incident management platform.
What can you do with Rootly?
rootly-mcp
MCP server for the Rootly incident management platform.
Built by WYRE Technology — part of the wyre-projects MCP server collection.
Uses decision-tree navigation: start with rootly_navigate to select a domain, then use that domain's tools. Call rootly_back to return.
Domains & Tools
Navigation (always available)
| Tool | Description |
|---|---|
rootly_navigate |
Navigate to a domain: incidents, alerts, schedules, org |
rootly_status |
Check connection status and available domains |
rootly_back |
Return to the navigation menu |
Domain: incidents
| Tool | Description |
|---|---|
rootly_incidents_list |
List incidents with optional status/severity filters |
rootly_incidents_get |
Get a single incident by ID |
rootly_incidents_create |
Create a new incident |
rootly_incidents_update |
Update title, summary, status, or severity |
rootly_incidents_resolve |
Resolve an incident |
Domain: alerts
| Tool | Description |
|---|---|
rootly_alerts_list |
List alerts with optional status filter |
rootly_alerts_acknowledge |
Acknowledge an alert |
rootly_alerts_resolve |
Resolve an alert |
rootly_alerts_create |
Create a new alert |
rootly_alerts_update |
Update alert status or summary |
Domain: schedules
| Tool | Description |
|---|---|
rootly_schedules_list |
List on-call schedules |
rootly_schedules_get |
Get a single on-call schedule |
Domain: org
| Tool | Description |
|---|---|
rootly_org_list_teams |
List teams |
rootly_org_list_severities |
List severity levels |
rootly_org_current_user |
Get current authenticated user |
Interactive Incident Card (MCP Apps)
rootly_incidents_get renders as an interactive read-only card in MCP Apps
hosts (Claude Desktop/web) showing status, severity, services, environments,
teams, and a lifecycle timeline; plain-JSON behavior is unchanged in other
hosts. The card is neutral by default and brandable via window.__BRAND__
injection or MCP_BRAND_* env vars (MCP_BRAND_NAME, MCP_BRAND_LOGO_URL,
MCP_BRAND_PRIMARY_COLOR, MCP_BRAND_ACCENT_COLOR, MCP_BRAND_BG,
MCP_BRAND_TEXT) — no rebuild needed. Rebuild the card bundle itself with
npm run build:ui (only needed when ui/ changes; the embedded output is
committed).
Setup
1. Install & build
cd rootly-mcp
npm install
npm run build
2. Set your API token
export ROOTLY_API_TOKEN=rootly_xxxxxxxxxxxxxxxx
Get your token from Rootly → Profile → API Tokens.
3. Run (stdio — for mcporter/Claude Desktop)
ROOTLY_API_TOKEN=your_token node dist/index.js
4. Run (HTTP streaming transport)
ROOTLY_API_TOKEN=your_token MCP_TRANSPORT=http node dist/http.js
# Listens on :8080 — /mcp for MCP, /health for health check
5. Run with Docker
docker compose up
# or
docker run -e ROOTLY_API_TOKEN=your_token ghcr.io/wyre-ai/rootly-mcp:latest
mcporter Configuration
{
"rootly": {
"command": "node",
"args": ["/path/to/rootly-mcp/dist/index.js"],
"env": {
"ROOTLY_API_TOKEN": "rootly_xxxxxxxxxxxxxxxx"
}
}
}
Then: mcporter call rootly.rootly_navigate --domain alerts
Claude Desktop (MCPB)
Download the .mcpb bundle from Releases and install it in Claude Desktop.
Or manually add to claude_desktop_config.json:
{
"mcpServers": {
"rootly": {
"command": "node",
"args": ["/path/to/rootly-mcp/dist/index.js"],
"env": { "ROOTLY_API_TOKEN": "your_token" }
}
}
}
Rate Limiting
Rootly enforces 3 write operations per 60 seconds. The server tracks this in-process and returns a descriptive error with retry-after time if exceeded.
API Reference
- Rootly API docs: https://docs.rootly.com/api-reference
- API base URL:
https://api.rootly.com/v1 - Auth:
Authorization: Bearer <token> - Write content-type:
application/vnd.api+json
Development
npm run dev # watch mode
npm run lint # TypeScript type-check
npm run test # run tests
License
Apache-2.0 © WYRE Technology
Install
Add Rootly to your client. Pick the one you use.
claude mcp add ghcr-io-wyre-technology-rootly-mcp-v1-2- -- docker run -i --rm ghcr.io/wyre-technology/rootly-mcp:v1.2.4codex mcp add ghcr-io-wyre-technology-rootly-mcp-v1-2- -- docker run -i --rm ghcr.io/wyre-technology/rootly-mcp:v1.2.4amp mcp add ghcr-io-wyre-technology-rootly-mcp-v1-2- -- docker run -i --rm ghcr.io/wyre-technology/rootly-mcp:v1.2.4{
"mcpServers": {
"ghcr-io-wyre-technology-rootly-mcp-v1-2-": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/rootly-mcp:v1.2.4"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ghcr-io-wyre-technology-rootly-mcp-v1-2-": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/rootly-mcp:v1.2.4"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ghcr-io-wyre-technology-rootly-mcp-v1-2-","command":"docker","args":["run","-i","--rm","ghcr.io/wyre-technology/rootly-mcp:v1.2.4"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ghcr-io-wyre-technology-rootly-mcp-v1-2-": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/rootly-mcp:v1.2.4"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ghcr-io-wyre-technology-rootly-mcp-v1-2-": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/rootly-mcp:v1.2.4"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ghcr-io-wyre-technology-rootly-mcp-v1-2-": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/rootly-mcp:v1.2.4"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ghcr-io-wyre-technology-rootly-mcp-v1-2-": {
"type": "local",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/rootly-mcp:v1.2.4"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ghcr-io-wyre-technology-rootly-mcp-v1-2-": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/rootly-mcp:v1.2.4"
]
}
}
}
}Add to your Zed `settings.json`.
docker run -i --rm ghcr.io/wyre-technology/rootly-mcp:v1.2.4Run `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust9/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.2.4Latest | Aug 13, 2026 |
| 1.2.3 | Aug 10, 2026 |
| 1.2.2 | Aug 7, 2026 |
| 1.2.1 | Jul 24, 2026 |
| 1.2.0 | Jul 17, 2026 |
| 1.1.9 | Jul 1, 2026 |
| 1.1.8 | Jun 22, 2026 |
| 1.1.7 | May 30, 2026 |