mcp-workbench-cli 0.1.0

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 ADDED
@@ -0,0 +1,28 @@
1
+ # mcp-workbench-cli
2
+
3
+ Convenience wrapper for **[@raeseoklee/mcp-workbench](https://www.npmjs.com/package/@raeseoklee/mcp-workbench)**.
4
+
5
+ The unscoped npm name `mcp-workbench` is taken by an unrelated project. This package provides the same `mcp-workbench` command under an alternative package name.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install -g mcp-workbench-cli
11
+ ```
12
+
13
+ This is equivalent to:
14
+
15
+ ```bash
16
+ npm install -g @raeseoklee/mcp-workbench
17
+ ```
18
+
19
+ Both install the `mcp-workbench` command.
20
+
21
+ ## Usage
22
+
23
+ ```bash
24
+ mcp-workbench inspect --command node --args "path/to/server.js"
25
+ mcp-workbench run tests.yaml --verbose
26
+ ```
27
+
28
+ See the [MCP Workbench documentation](https://github.com/raeseoklee/mcp-workbench) for the full reference.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ // Thin wrapper — forwards to @raeseoklee/mcp-workbench CLI.
4
+ import("@raeseoklee/mcp-workbench/dist/index.js");
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "mcp-workbench-cli",
3
+ "version": "0.1.0",
4
+ "description": "MCP Workbench CLI — convenience wrapper for @raeseoklee/mcp-workbench",
5
+ "type": "module",
6
+ "keywords": ["mcp", "model-context-protocol", "mcp-server", "mcp-testing", "mcp-workbench", "testing", "cli", "developer-tools", "ai-tooling", "llm-tooling"],
7
+ "license": "Apache-2.0",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/raeseoklee/mcp-workbench.git",
11
+ "directory": "packages/npm-wrapper-cli"
12
+ },
13
+ "homepage": "https://github.com/raeseoklee/mcp-workbench#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/raeseoklee/mcp-workbench/issues"
16
+ },
17
+ "engines": {
18
+ "node": ">=20.0.0"
19
+ },
20
+ "bin": {
21
+ "mcp-workbench": "./bin/mcp-workbench.js"
22
+ },
23
+ "files": [
24
+ "bin"
25
+ ],
26
+ "dependencies": {
27
+ "@raeseoklee/mcp-workbench": "workspace:*"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ }
32
+ }