@greynewell/mcpbr-claude-plugin 0.3.18 → 0.3.19
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 +6 -4
- package/package.json +1 -1
- package/plugin.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
#
|
|
1
|
+
# mcpbr-claude-plugin
|
|
2
2
|
|
|
3
3
|
> Claude Code plugin for mcpbr - Makes Claude an expert at running MCP benchmarks
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/mcpbr-claude-plugin)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
8
|
This Claude Code plugin provides specialized skills that make Claude an expert at using [mcpbr](https://github.com/greynewell/mcpbr) for MCP server benchmarking.
|
|
9
9
|
|
|
10
|
+
> **Note**: This package is also available as `@greynewell/mcpbr-claude-plugin` for those who prefer scoped package names.
|
|
11
|
+
|
|
10
12
|
## What is mcpbr?
|
|
11
13
|
|
|
12
14
|
**Model Context Protocol Benchmark Runner** - Benchmark your MCP server against real GitHub issues. Get hard numbers comparing tool-assisted vs. baseline agent performance.
|
|
@@ -24,7 +26,7 @@ cd mcpbr
|
|
|
24
26
|
### Option 2: Install via npm
|
|
25
27
|
|
|
26
28
|
```bash
|
|
27
|
-
npm install -g
|
|
29
|
+
npm install -g mcpbr-claude-plugin
|
|
28
30
|
```
|
|
29
31
|
|
|
30
32
|
### Option 3: Claude Code Plugin Manager
|
|
@@ -97,7 +99,7 @@ pytest tests/test_claude_plugin.py -v
|
|
|
97
99
|
## Related Packages
|
|
98
100
|
|
|
99
101
|
- [`mcpbr`](https://pypi.org/project/mcpbr/) - Python package (core implementation)
|
|
100
|
-
- [
|
|
102
|
+
- [`mcpbr`](https://www.npmjs.com/package/mcpbr) - npm CLI wrapper (also available as `@greynewell/mcpbr`)
|
|
101
103
|
|
|
102
104
|
## Documentation
|
|
103
105
|
|
package/package.json
CHANGED