@greynewell/mcpbr 0.3.20 → 0.3.22
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 +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
# mcpbr
|
|
2
2
|
|
|
3
3
|
```bash
|
|
4
|
+
# Install via pip
|
|
4
5
|
pip install mcpbr && mcpbr init && mcpbr run -c mcpbr.yaml -n 1 -v
|
|
6
|
+
|
|
7
|
+
# Or via npm
|
|
8
|
+
npm install -g mcpbr-cli && mcpbr init && mcpbr run -c mcpbr.yaml -n 1 -v
|
|
5
9
|
```
|
|
6
10
|
|
|
7
11
|
Benchmark your MCP server against real GitHub issues. One command, hard numbers.
|
|
@@ -205,6 +209,21 @@ Run `mcpbr models` to see the full list.
|
|
|
205
209
|
|
|
206
210
|
</details>
|
|
207
211
|
|
|
212
|
+
### via npm
|
|
213
|
+
|
|
214
|
+
```bash
|
|
215
|
+
# Run with npx (no installation)
|
|
216
|
+
npx mcpbr-cli run -c config.yaml
|
|
217
|
+
|
|
218
|
+
# Or install globally
|
|
219
|
+
npm install -g mcpbr-cli
|
|
220
|
+
mcpbr run -c config.yaml
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
> **Note**: The npm package requires Python 3.11+ and the mcpbr Python package (`pip install mcpbr`)
|
|
224
|
+
|
|
225
|
+
### via pip
|
|
226
|
+
|
|
208
227
|
```bash
|
|
209
228
|
# Install from PyPI
|
|
210
229
|
pip install mcpbr
|