🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@buildpulse/mcp

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@buildpulse/mcp

BuildPulse Model Context Protocol server — flaky test analytics, coverage, and CI run history as agent-callable tools.

latest
Source
npmnpm
Version
0.1.5
Version published
Maintainers
1
Created
Source

@buildpulse/mcp

Model Context Protocol server for the BuildPulse Platform API. Lets Claude Desktop, Cursor, Cline, Windsurf, Continue, ChatGPT (via MCP-enabled clients), and any other MCP-aware agent query your CI test analytics directly.

Install

npx -y @buildpulse/mcp

Or pin globally:

npm install -g @buildpulse/mcp

The package downloads the matching native binary for your platform on first install. Supported platforms: macOS (arm64, x64), Linux (arm64, x64), Windows (x64).

Configure

You need a BuildPulse API token. Generate one at https://app.buildpulse.io → Organization Settings → API Tokens.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "buildpulse": {
      "command": "npx",
      "args": ["-y", "@buildpulse/mcp"],
      "env": {
        "BUILDPULSE_TOKEN": "your-40-char-hex-token"
      }
    }
  }
}

Cursor

Edit .cursor/mcp.json in your project (or ~/.cursor/mcp.json for all projects):

{
  "mcpServers": {
    "buildpulse": {
      "command": "npx",
      "args": ["-y", "@buildpulse/mcp"],
      "env": {
        "BUILDPULSE_TOKEN": "your-40-char-hex-token"
      }
    }
  }
}

Cline / Continue / Windsurf

Use the same JSON snippet — these clients all read mcpServers in their respective config files.

Tools

ToolPurpose
find_flaky_testsSearch a repo's flaky inventory. Filter by tags, recency, free-text.
get_test_historyRecent disruption events for a specific test.
list_recent_submissionsRecent CI runs for a repository.
get_repo_flakinessCurrent flakiness % (last 14 days).
get_repo_coverageCurrent coverage % (latest report).

Environment variables

VariableRequiredDefault
BUILDPULSE_TOKENyes
PLATFORM_API_URLnohttps://platform.buildpulse.io

Troubleshooting

  • authentication failed (401) — token is wrong, expired, or your org has no active plan. Confirm by running:

    curl -i -H "Authorization: token $BUILDPULSE_TOKEN" https://platform.buildpulse.io/api
    

    Expected: HTTP/1.1 204 No Content.

  • MCP client shows "server failed to start" — open the integration's log panel. The stderr will tell you what's wrong (missing token, binary download failure, etc.).

  • Binary download failed during install — set BUILDPULSE_MCP_SKIP_INSTALL=1 and build from source:

    git clone https://github.com/BuildPulseLLC/buildpulse-mcp
    cd platform-api && go build -o /usr/local/bin/buildpulse-mcp ./cmd/mcp
    

License

MIT. See LICENSE.

Keywords

mcp

FAQs

Package last updated on 17 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts