AI / MCP
Use BuildPulse in Claude, ChatGPT & Cursor
BuildPulse ships a Model Context Protocol (MCP) server, so your AI assistant can query your flaky tests, test results, and CI analytics directly — no copy-pasting logs. Ask “which tests are flakiest this week?” and get a real answer from your data.
What you can ask
- “Which tests are flakiest in this repo right now, and how often do they fail?”
- “Show me the failing tests from my last CI run and the likely cause.”
- “What’s our test pass rate trend over the last 30 days?”
- “Quarantine the top flaky test so it stops blocking merges.”
Hosted setup (recommended)
For clients that support remote MCP servers, point them at the hosted endpoint and sign in with BuildPulse (OAuth):
{
"mcpServers": {
"buildpulse": {
"url": "https://mcp.buildpulse.io"
}
}
}Endpoint: https://mcp.buildpulse.io
Local setup (stdio)
For Claude Desktop, Cursor, and other stdio clients, add the npm package to your MCP config:
{
"mcpServers": {
"buildpulse": {
"command": "npx",
"args": ["-y", "@buildpulse/mcp"]
}
}
}Package: @buildpulse/mcp · Also listed on the official MCP Registry as io.github.BuildPulseLLC/buildpulse-mcp.