Skip to content
VS Code

ActionsPulse for VS Code

io.github.tsviz/actions-pulse

Real-time GitHub Actions observability: DORA Metrics, Cost Analysis, CI/CD Health dashboards.

client:VS Code transport:stdio runtime:oci

Install ActionsPulse in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-org",
      "description": "GITHUB_ORG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-enterprise-slug",
      "description": "GITHUB_ENTERPRISE_SLUG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "default-repo-filter",
      "description": "DEFAULT_REPO_FILTER",
      "password": true
    }
  ],
  "servers": {
    "actions-pulse": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/tsviz/actions-pulse:v2.3.0"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}",
        "GITHUB_ORG": "${input:github-org}",
        "GITHUB_ENTERPRISE_SLUG": "${input:github-enterprise-slug}",
        "DEFAULT_REPO_FILTER": "${input:default-repo-filter}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ActionsPulse in other clients