Server data from the Official MCP Registry
Real-time GitHub Actions observability: DORA Metrics, Cost Analysis, CI/CD Health dashboards.
Real-time GitHub Actions observability: DORA Metrics, Cost Analysis, CI/CD Health dashboards.
Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
3 files analyzed ยท No 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: GITHUB_TOKEN
Environment variable: GITHUB_ORG
Environment variable: GITHUB_ENTERPRISE_SLUG
Environment variable: DEFAULT_REPO_FILTER
From the project's GitHub README.
Real-time GitHub Actions observability through VS Code with GitHub Copilot
DORA Metrics โข Cost Analysis โข CI/CD Health โข Security Compliance
โ๏ธ This is an actual interactive HTML dashboard generated by ActionsPulse โ see full tour below
ActionsPulse is an Agentic MCP Server that brings DevOps observability directly into your IDE. Ask GitHub Copilot questions like:
๐ฌ "Show me our DORA metrics for the last 30 days"
๐ฌ "Which workflows are costing us the most?"
๐ฌ "Generate a compliance report for SOC2"
๐ฌ "What's our deployment frequency this month?"
And get interactive visual dashboards with actionable insights.
| Feature | Organization | Enterprise |
|---|---|---|
| ๐ DORA Metrics | โ | โ Enhanced |
| โก Performance Analytics | โ | โ |
| ๐ฐ Cost Optimization | โ | โ Cross-org |
| ๐ Runner Utilization | โ Self-hosted | โ All runners |
| ๐ฅ Team Productivity | โ | โ |
| ๐ Compliance Reports | โ (GHAS) | โ |
| ๐พ Cache Analytics | โ | โ |
| ๐ Maturity Assessment | โ | โ |
ActionsPulse generates interactive HTML dashboards that you can open in any browser. Simply ask Copilot:
๐ฌ "Generate DevOps reports for my organization"
Or use the generate_devops_reports tool directly. Here's a complete tour of what you get:
The main dashboard provides:
Track the four key DORA metrics:
Each metric includes trend analysis and benchmarks against industry standards (Elite, High, Medium, Low performers).
Deep dive into your CI/CD pipelines:
Understand and optimize your GitHub Actions spending:
Stay compliant and secure:
Assess your DevOps maturity level:
๐ก How to generate these dashboards:
# Ask Copilot in natural language: "Generate DevOps reports for the last 30 days" # Or invoke the tool directly: #generate_devops_reports --timeframe 30dReports are saved to timestamped folders as standalone HTML files โ share them with your team or embed in internal wikis!
ActionsPulse is published to the official MCP Registry as io.github.tsviz/actions-pulse.
๐ Web UI (Recommended) โ Use the MCP Registry UI for 1-click installation into VS Code or Cursor:
Manual Docker Setup โ Or follow the steps below to configure manually.
Go to GitHub Settings โ Developer Settings โ Personal Access Tokens โ Fine-grained tokens
Click Generate new token
Configure basic settings:
actions-pulse-mcpSet Repository permissions:
| Permission | Access | Required | Purpose |
|---|---|---|---|
| Actions | Read | โ Yes | Workflow runs, cache usage |
| Administration | Read | โ Yes | Billing data, repo settings |
| Contents | Read | โ Yes | Read config files from devops-config repo |
| Custom properties | Read | โ Yes | Read custom property values on repositories |
| Deployments | Read | โ Yes | Deployment frequency, environments (DORA) |
| Discussions | Read | ๐ถ Optional | Community engagement metrics |
| Environments | Read | โ Yes | Environment protection rules |
| Issues | Read | โ Yes | Issue metrics, resolution times (DORA) |
| Merge queues | Read | ๐ถ Optional | Merge queue adoption and wait times |
| Metadata | Read | โ Yes | Basic repo info (auto-granted) |
| Pull requests | Read | โ Yes | PR metrics, lead time, review times (DORA) |
Set Organization permissions:
| Permission | Access | Required | Purpose |
|---|---|---|---|
| Custom properties | Read | โ Yes | Read property definitions/schemas at org level |
| Custom properties for organizations | Read | โ Yes | Read property values assigned to repositories |
Set Organization permissions (continued):
| Permission | Access | Required | Purpose |
|---|---|---|---|
| Members | Read | ๐ถ Optional | Team membership for productivity metrics |
| Self-hosted runners | Read | ๐ถ Optional | Runner utilization metrics |
| Administration | Read | โ Yes | Org billing and settings |
Optional permissions (for compliance features, requires GitHub Advanced Security):
| Permission | Access | Required | Purpose |
|---|---|---|---|
| Secret scanning alerts | Read | โ Optional | Compliance audit reports |
| Code scanning alerts | Read | โ Optional | Compliance audit reports |
Click Generate token and save it securely
Add to your ~/.mcp.env:
GITHUB_TOKEN=ghp_your_fine_grained_token_here
Add to VS Code's MCP settings (~/.vscode/mcp.json or workspace .vscode/mcp.json):
{
"servers": {
"actions-pulse": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"--env-file", "/path/to/.mcp.env",
"-e", "GITHUB_ORG=your-org-name",
"ghcr.io/tsviz/actions-pulse:latest"
],
"type": "stdio"
}
}
}
{
"servers": {
"actions-pulse": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "GITHUB_TOKEN=ghp_your_token",
"-e", "GITHUB_ORG=your-org-name",
"ghcr.io/tsviz/actions-pulse:latest"
],
"type": "stdio"
}
}
}
| Variable | Required | Description |
|---|---|---|
GITHUB_TOKEN | โ Yes | Personal Access Token (fine-grained recommended) |
GITHUB_ORG | โ Yes | Target GitHub organization to monitor (e.g., my-company). All API calls use this org. |
DEFAULT_REPO_FILTER | โ No | Comma-separated list of repos to monitor (e.g., my-app,my-api). See precedence rules below. |
GITHUB_API_URL | โ No | Custom API URL (default: https://api.github.com) |
GITHUB_ENTERPRISE_SLUG | โ No | Enterprise slug for enhanced features |
GITHUB_ENTERPRISE_URL | โ No | GitHub Enterprise Server API URL |
DEVOPS_CONFIG_REPO | โ No | Config repo name (default: devops-config) |
DEVOPS_CONFIG_PATH | โ No | Local path to config files (for mounted configs) |
When determining which repositories to query, ActionsPulse uses this precedence (highest to lowest):
| Priority | Source | Applies To | Example |
|---|---|---|---|
| 1๏ธโฃ | repo_filter parameter in tool call | Individual tools | get_dora_metrics(repo_filter: "app1,app2") |
| 2๏ธโฃ | inventory.yaml repositories | generate_devops_reports | Repos defined in config file |
| 3๏ธโฃ | DEFAULT_REPO_FILTER env var | All tools (fallback) | DEFAULT_REPO_FILTER=my-app,my-api |
| 4๏ธโฃ | All org repos via GitHub API | All tools | (default if nothing set) |
Tip: For quick setup without a config repo, just set DEFAULT_REPO_FILTER in the MCP Registry installer. For richer metadata (team, tier, compliance tags), use inventory.yaml.
By default, ActionsPulse queries ALL repositories in your organization via the GitHub API โ no configuration files are required. You can filter repos dynamically using tool parameters like repo_filter.
The optional configuration files let you define persistent metadata (teams, tiers, compliance tags) for filtering and reporting. There are two approaches:
Create a devops-config repository in your organization with the following structure:
devops-config/
โโโ devops-config.yaml # Main configuration
โโโ repositories/
โ โโโ inventory.yaml # List of repos to monitor
โโโ policies/
โ โโโ workflow-policies.yaml # CI/CD standards
โ โโโ security-policies.yaml # Security requirements
โโโ dashboards/ # Dashboard configs
The MCP server will automatically discover and load from {org}/devops-config repo.
Mount a local config directory into the Docker container:
{
"servers": {
"actions-pulse": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"--env-file", "/path/to/.mcp.env",
"-e", "GITHUB_ORG=your-org-name",
"-e", "DEVOPS_CONFIG_PATH=/app/config",
"-v", "/path/to/your/config:/app/config:ro",
"ghcr.io/tsviz/actions-pulse:latest"
],
"type": "stdio"
}
}
}
Create repositories/inventory.yaml to define which repos to monitor:
apiVersion: actions-pulse/v1
kind: RepositoryInventory
metadata:
name: my-inventory
version: "1.0.0"
description: "Repositories to monitor"
spec:
discovery:
enabled: false # Only monitor explicit repos
repositories:
- name: my-app
team: platform
tier: tier-1
compliance: [SOC2]
tags: [java, production]
- name: my-api
team: backend
tier: tier-2
tags: [nodejs, staging]
| Tier | Priority | Uptime | Response Time | Use Case |
|---|---|---|---|---|
| tier-1 | ๐ด Critical | 99.9% | < 15 min | Production, customer-facing |
| tier-2 | ๐ก Standard | 99% | < 1 hour | Internal tools, staging |
| tier-3 | ๐ข Low | Best effort | < 24 hours | Demos, prototypes |
See docs/ARCHITECTURE.md for complete tier definitions, compliance requirements, and alerting behavior.
After updating mcp.json, restart VS Code to pick up the new MCP server. You can verify the server is running by opening GitHub Copilot Chat and asking about your DevOps metrics.
Analyze GitHub Actions usage and billing data (basic).
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- timeframe: '24h' | '7d' | '30d'
- breakdown: 'repository' | 'workflow' | 'runner_type'
GitHub Insights-style detailed usage metrics with per-workflow, per-job, per-repo, per-OS, and per-runner breakdowns.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- timeframe: '7d' | '30d' | '90d'
- repo_filter: Comma-separated list of repositories (optional)
GitHub Insights-style performance metrics with avg run time, queue time, and failure rates per workflow/job/repo/OS/runner.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- timeframe: '7d' | '30d' | '90d'
- repo_filter: Comma-separated list of repositories (optional)
Get workflow performance analytics with P95/P99 latencies (basic).
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- repo_name: Specific repository (optional)
- workflow_id: Specific workflow (optional)
- timeframe: '1h' | '6h' | '24h' | '7d'
Enhanced Cost Detection: Reports now use a three-tier system for accurate runner cost calculation:
- ๐ฏ API Detection - Uses hosted runners API for exact machine specs
- ๐ท๏ธ Label Detection - Pattern matching against runner catalog
- ๐ Default Pricing - OS-based fallback
See Configuration Guide for details.
Analyze runner utilization and efficiency.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- runner_type: 'self-hosted' | 'github-hosted' | 'all'
- include_costs: Include cost analysis (default: true)
Analyze Actions cache usage and efficiency.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- repo_name: Specific repository (optional)
- timeframe: '24h' | '7d' | '30d'
Generate actionable cost optimization recommendations.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- include_recommendations: Include actionable recommendations (default: true)
- target_savings_percentage: Target savings (5-50, default: 20)
Get workflow insights with bottleneck detection.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- repo_name: Repository name (required)
- workflow_name: Workflow name or filename (required)
- analyze_dependencies: Analyze job dependencies (default: true)
Analyze team productivity based on Actions and commit data.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- team_slug: Team slug (optional)
- include_individuals: Include individual metrics (default: false)
- timeframe: '7d' | '30d' | '90d'
Generate compliance and security audit report.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- compliance_framework: 'SOC2' | 'ISO27001' | 'HIPAA' | 'PCI-DSS' | 'CUSTOM'
- include_secrets_scan: Include secret scanning (default: true, requires GHAS)
Get DORA metrics (Deployment Frequency, Lead Time, Change Failure Rate, Time to Restore).
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- timeframe: '7d' | '30d' | '90d'
- repo_filter: Comma-separated list of repositories (optional)
DORA metrics using actual GitHub Deployments API for maximum accuracy.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- timeframe: '7d' | '30d' | '90d'
- repo_filter: Comma-separated list of repositories (optional)
Pull request metrics including lead time, merge rates, and size distribution.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- timeframe: '7d' | '30d' | '90d'
- repo_name: Specific repository (optional)
- include_stale: Include stale PR analysis (optional)
Issue metrics including time to close, label distribution, and backlog health.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- timeframe: '7d' | '30d' | '90d'
- repo_name: Specific repository (optional)
- label_filter: Filter by label (optional)
Deployment metrics from GitHub Deployments API.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- timeframe: '7d' | '30d' | '90d'
- environment: Filter by environment (optional)
- repo_filter: Comma-separated list of repositories (optional)
Analyze GitHub environment configurations including protection rules.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- repo_filter: Comma-separated list of repositories (optional)
GitHub Discussions metrics including answer rates and engagement.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- repo_name: Specific repository (optional)
- timeframe: '7d' | '30d' | '90d'
Merge queue usage and adoption across repositories.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- repo_name: Specific repository (optional)
List all custom property definitions for an organization.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
Analyze custom property usage and coverage across repositories.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
Find repositories by custom property value.
Parameters:
- org_name: Organization name (optional if GITHUB_ORG is set)
- property_name: Custom property name (e.g., team, tier, compliance)
- property_value: Property value to filter by (optional)
If you have GitHub Enterprise, you can enable enhanced features by adding:
GITHUB_ENTERPRISE_SLUG=your-enterprise-slug
This enables:
npm install
npm run build
docker build -t actions-pulse:local .
export GITHUB_TOKEN=ghp_your_token
export GITHUB_ORG=your-org
npm start
You can automate DevOps report generation using GitHub Copilot CLI with ActionsPulse MCP server in a GitHub Actions workflow. This enables scheduled weekly reports, on-demand analysis, and automatic issue creation with insights.
See .github/workflows/weekly-devops-report.yml for a complete working example.
- name: Setup MCP config
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT_DEVOPS }}
run: |
mkdir -p ~/.copilot
printf '%s\n' '{
"mcpServers": {
"actions-pulse": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "GITHUB_TOKEN='"$GITHUB_TOKEN"'", "-e", "GITHUB_ORG=your-org", "ghcr.io/tsviz/actions-pulse:latest"],
"tools": ["*"]
}
}
}' > ~/.copilot/mcp-config.json
- name: Generate DevOps Report
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT_DEVOPS }}
GH_TOKEN: ${{ secrets.GH_PAT_DEVOPS }}
run: |
copilot --yolo \
--disable-builtin-mcps \
--additional-mcp-config @$HOME/.copilot/mcp-config.json \
--prompt "Use the actions-pulse MCP tools to generate a DevOps report..."
| Flag | Description |
|---|---|
--yolo | Auto-approve all tool calls (no confirmation prompts) |
--disable-builtin-mcps | Disable built-in MCP servers (use only custom ones) |
--additional-mcp-config @<file> | Load MCP server config from file (use $HOME not ~) |
--prompt "<text>" | The prompt for Copilot to execute |
$HOME instead of ~ in the config path โ tilde is not expanded in @file argumentsenv block in MCP config doesn't pass variables to Docker"tools": ["*"] in your MCP config โ this field is required| Document | Description |
|---|---|
| Quick Start | Get up and running in 5 minutes |
| Configuration Guide | Complete configuration reference |
| Architecture | System design and tier definitions |
Ready-to-use configuration examples are available in the examples/ directory:
| File | Description |
|---|---|
| mcp-docker.json | VS Code MCP config using Docker |
| mcp-local.json | VS Code MCP config for local development |
| mcp-envfile.json | VS Code MCP config using environment file |
| .env.example | Environment variables template |
| inventory.yaml | Repository inventory example |
| devops-config.yaml | DevOps observer configuration |
| docker-compose.yml | Docker Compose deployment |
MIT
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.