rebarcore-mcp 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -47,7 +47,7 @@ A key carries a **capability** (`read` / `propose` / `operate`); the server only
47
47
 
48
48
  ## CLI
49
49
 
50
- The same package installs a `rebar` command — agent-first (JSON by default, structured errors, `--dry-run` on every mutation, env-var auth, no browser):
50
+ The same package installs a `rebar` command — agent-first (JSON by default, structured errors, `--dry-run` on every mutation, env-var auth, no browser). Install it globally (`npm i -g rebarcore-mcp`) so `rebar` is on your PATH, or run it one-off with `npx -p rebarcore-mcp rebar <args>`:
51
51
 
52
52
  ```bash
53
53
  export REBAR_API_KEY=rbr_live_…
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "rebarcore-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Rebar — operate your autonomous software-repair fleet from any MCP client.",
5
5
  "type": "module",
6
6
  "bin": {
7
+ "rebarcore-mcp": "./dist/bin/stdio.js",
7
8
  "rebar-mcp": "./dist/bin/stdio.js",
8
9
  "rebar": "./dist/bin/cli.js"
9
10
  },