MCP Hub
Back to servers

Koalr

Connect engineering metrics, DORA performance, deploy risk scoring, and PR health to any AI assistant. Score PRs for deployment risk using a 36-signal model, query team health, incidents, coverage, and more.

glama
Updated
Mar 31, 2026

koalr-mcp

Koalr MCP server — connect your engineering metrics, deploy risk scoring, and DORA performance data to Claude, Cursor, Windsurf, and any MCP-compatible AI assistant.

npm version smithery badge MIT License


What can it do?

Once connected, ask your AI assistant things like:

  • "Score PR #847 in our API repo for deployment risk"
  • "Which open PRs are most likely to cause a production incident?"
  • "What is our DORA performance tier this month?"
  • "Show me all PRs open more than 3 days on the backend team"
  • "How is our AI coding tool adoption trending?"
  • "What was our MTTR for incidents last quarter?"
  • "Find developers with the highest PR throughput"
  • "What is our org-wide test coverage trend?"

Quick Start

1. Get an API Key

Go to app.koalr.com/settings/api-keys, create a key, and copy it. It starts with koalr_.

2. Install in your AI assistant

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "koalr": {
      "command": "npx",
      "args": ["-y", "koalr-mcp@latest"],
      "env": {
        "KOALR_API_KEY": "koalr_your_key_here"
      }
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "koalr": {
      "command": "npx",
      "args": ["-y", "koalr-mcp@latest"],
      "env": {
        "KOALR_API_KEY": "koalr_your_key_here"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "koalr": {
      "command": "npx",
      "args": ["-y", "koalr-mcp@latest"],
      "env": {
        "KOALR_API_KEY": "koalr_your_key_here"
      }
    }
  }
}

Claude Code (CLI)

claude mcp add koalr \
  -e KOALR_API_KEY=koalr_your_key_here \
  -- npx -y koalr-mcp@latest

Available Tools

Deploy Risk

ToolDescription
score_pr_for_deploy_riskScore a PR 0–100 for deployment risk using Koalr's 36-signal model. Returns factor breakdown: change entropy, DDL migrations, author expertise, CODEOWNERS violations, and more.

Organization

ToolDescription
get_org_healthOverall org health: DORA tier, cycle time, active teams, recent incidents
get_well_being_summaryDeveloper well-being: focus time, meeting load, burnout signals

DORA Metrics

ToolDescription
get_dora_summaryDeployment frequency, lead time for changes, change failure rate, MTTR
get_dora_trendDORA trend over time (7d, 14d, 30d, 90d)

Pull Requests

ToolDescription
get_pr_summaryPR volume, cycle time, review turnaround for a period
get_open_prsCurrently open PRs with age, size, and review status
get_at_risk_prsPRs flagged as at-risk: long open, large, stalled in review

Teams

ToolDescription
list_teamsAll teams in your org
get_teamTeam detail: members, DORA performance, recent activity
list_team_membersMembers of a specific team

Developers

ToolDescription
get_developerIndividual developer profile: PR throughput, review activity, cycle time
list_top_contributorsTop contributors by PR throughput, reviews, or impact

Repositories

ToolDescription
list_repositoriesAll repos with language, activity, and health status
get_repositorySingle repo detail: deployment frequency, cycle time, contributors

Incidents

ToolDescription
list_recent_incidentsRecent incidents from PagerDuty/OpsGenie with MTTR and severity

Coverage

ToolDescription
get_coverage_summaryTest coverage by repository with trend

AI Adoption

ToolDescription
get_ai_adoption_summaryGitHub Copilot and Cursor usage metrics
get_ai_adoption_trendAI coding tool adoption trend over time

Search

ToolDescription
searchSearch developers, repos, PRs, and teams by name

Environment Variables

VariableDescriptionDefault
KOALR_API_KEYYour Koalr API key (required)
KOALR_API_URLAPI base URL (for self-hosted Koalr)https://api.koalr.com
MCP_TRANSPORTTransport mode: stdio or httpstdio
PORTPort for HTTP transport mode3010

About Koalr

Koalr is an engineering metrics platform for software teams. It tracks DORA metrics, PR health, developer experience, and — uniquely — deployment risk prediction using a 36-signal ML model that scores every PR before it merges.

Sign up free · Docs · koalr.com

Reviews

No reviews yet

Sign in to write a review