BuildPulse CI test analytics for AI agents — flaky tests, coverage, and CI run history.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"buildpulse": {
"env": {
"BUILDPULSE_TOKEN": "your-buildpulse-api-token"
},
"args": [
"-y",
"@buildpulse/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Model Context Protocol server for the BuildPulse > Platform API. Surface flaky tests, CI run history, and coverage health > in Claude Desktop, Cursor, ChatGPT, Cline, Windsurf, Continue, Zed, > VS Code Copilot, and any other MCP-aware AI agent.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@buildpulse/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @buildpulse/mcp against OSV.dev.
Click any tool to inspect its schema.
flaky_testsFlaky test inventory for a repository
buildpulse://repos/{repo}/flaky-tests
submissionsRecent CI runs for a repository
buildpulse://repos/{owner}/{name}/submissions
triage_flaky_testsGuided prompt for triaging flaky tests
ci_health_checkGuided prompt for checking CI health
explain_test_failureGuided prompt for explaining test failures
whats_redGuided prompt for identifying current issues
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.BuildPulseLLC/buildpulse-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Model Context Protocol server for the BuildPulse Platform API. Surface flaky tests, CI run history, and coverage health in Claude Desktop, Cursor, ChatGPT, Cline, Windsurf, Continue, Zed, VS Code Copilot, and any other MCP-aware AI agent.
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.
Get a BuildPulse API token at https://buildpulse.io → Organization Settings → API Tokens.
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"buildpulse": {
"command": "npx",
"args": ["-y", "@buildpulse/mcp"],
"env": { "BUILDPULSE_TOKEN": "your-buildpulse-api-token" }
}
}
}
.cursor/mcp.json (per-project) or ~/.cursor/mcp.json (global):
same JSON shape.
Cline, Continue, Windsurf, Zed, and VS Code Copilot all read an
mcpServers block in their respective config files. See the
install hub for copy-paste
snippets per client.
| Tool | Purpose |
|---|---|
find_flaky_tests | Search a repository's flaky test inventory; filter by tags, recency, free-text. |
get_test_history | Recent disruption events for a specific test. |
list_recent_submissions | Recent CI runs for a repository. |
get_repo_flakiness | Current flakiness % over the last 14 days. |
get_repo_coverage | Current coverage % from the latest report. |
Every output that names a test or repo includes a web_url deep-link
back to the BuildPulse web app — the same polish Sentry / Atlassian
use in their MCP responses.
The server also ships four guided prompts (slash-pickable in clients that support them):
/triage_flaky_tests/ci_health_check/explain_test_failure/whats_red| Transport | Binary | Where it goes |
|---|---|---|
| stdio | cmd/mcp | npm → npx -y @buildpulse/mcp |
| Streamable HTTP | cmd/mcp-remote | hosted at https://mcp.buildpulse.io/mcp |
Same tool surface; same prompts; same resources. Pick whichever your client supports. The stdio path is universal; the hosted variant is the path to Claude.ai web and ChatGPT.
The server exposes two MCP resource templates so agents can pull state into context without a tool call:
buildpulse://repos/{repo}/flaky-testsbuildpulse://repos/{owner}/{name}/submissions| Variable | Required | Default |
|---|---|---|
BUILDPULSE_TOKEN | yes | — |
PLATFORM_API_URL | no | https://platform.buildpulse.io |
git clone https://github.com/BuildPulseLLC/buildpulse-mcp
cd buildpulse-mcp
go build -o ./bin/buildpulse-mcp ./cmd/mcp
go build -o ./bin/buildpulse-mcp-remote ./cmd/mcp-remote
Requires Go 1.24+.
go test ./...
MIT — see LICENSE.
/docs/mcp — branded install hub with copy buttons