@buildpulse/mcp 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/install.js +4 -4
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -102,10 +102,10 @@ their respective config files.
|
|
|
102
102
|
- **Binary download failed during install** — set
|
|
103
103
|
`BUILDPULSE_MCP_SKIP_INSTALL=1` and build from source:
|
|
104
104
|
```bash
|
|
105
|
-
git clone https://github.com/BuildPulseLLC/
|
|
105
|
+
git clone https://github.com/BuildPulseLLC/buildpulse-mcp
|
|
106
106
|
cd platform-api && go build -o /usr/local/bin/buildpulse-mcp ./cmd/mcp
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
## License
|
|
110
110
|
|
|
111
|
-
MIT. See [LICENSE](https://github.com/BuildPulseLLC/
|
|
111
|
+
MIT. See [LICENSE](https://github.com/BuildPulseLLC/buildpulse-mcp/blob/main/LICENSE).
|
package/lib/install.js
CHANGED
|
@@ -19,7 +19,7 @@ const tar = null; // Avoid runtime tar dep — we ship a .gz of the raw binary,
|
|
|
19
19
|
const pkg = require("../package.json");
|
|
20
20
|
const RELEASE_TAG = "mcp-v" + pkg.version;
|
|
21
21
|
const RELEASE_BASE =
|
|
22
|
-
"https://github.com/BuildPulseLLC/
|
|
22
|
+
"https://github.com/BuildPulseLLC/buildpulse-mcp/releases/download/" + RELEASE_TAG;
|
|
23
23
|
|
|
24
24
|
async function main() {
|
|
25
25
|
const target = detectTarget();
|
|
@@ -29,7 +29,7 @@ async function main() {
|
|
|
29
29
|
process.platform +
|
|
30
30
|
"/" +
|
|
31
31
|
process.arch +
|
|
32
|
-
".\nFile an issue at https://github.com/BuildPulseLLC/
|
|
32
|
+
".\nFile an issue at https://github.com/BuildPulseLLC/buildpulse-mcp/issues."
|
|
33
33
|
);
|
|
34
34
|
process.exit(1);
|
|
35
35
|
}
|
|
@@ -61,8 +61,8 @@ async function main() {
|
|
|
61
61
|
err.message +
|
|
62
62
|
"\n" +
|
|
63
63
|
"If you're offline or behind a corporate proxy, you can build from source:\n" +
|
|
64
|
-
" git clone https://github.com/BuildPulseLLC/
|
|
65
|
-
" cd
|
|
64
|
+
" git clone https://github.com/BuildPulseLLC/buildpulse-mcp\n" +
|
|
65
|
+
" cd buildpulse-mcp && go build -o " +
|
|
66
66
|
outPath +
|
|
67
67
|
" ./cmd/mcp"
|
|
68
68
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildpulse/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"mcpName": "io.github.buildpulsellc/buildpulse-mcp",
|
|
4
5
|
"description": "BuildPulse Model Context Protocol server — flaky test analytics, coverage, and CI run history as agent-callable tools.",
|
|
5
6
|
"keywords": [
|
|
6
7
|
"mcp",
|
|
@@ -15,12 +16,12 @@
|
|
|
15
16
|
],
|
|
16
17
|
"homepage": "https://platform.buildpulse.io/docs",
|
|
17
18
|
"bugs": {
|
|
18
|
-
"url": "https://github.com/BuildPulseLLC/
|
|
19
|
+
"url": "https://github.com/BuildPulseLLC/buildpulse-mcp/issues"
|
|
19
20
|
},
|
|
20
21
|
"repository": {
|
|
21
22
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/BuildPulseLLC/
|
|
23
|
-
"directory": "
|
|
23
|
+
"url": "git+https://github.com/BuildPulseLLC/buildpulse-mcp.git",
|
|
24
|
+
"directory": "npm"
|
|
24
25
|
},
|
|
25
26
|
"license": "MIT",
|
|
26
27
|
"bin": {
|