no-bash-mcp 0.0.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.
Files changed (3) hide show
  1. package/README.md +12 -0
  2. package/index.js +7 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # no-bash-mcp (placeholder)
2
+
3
+ **This `0.0.0` release is a placeholder reservation, not the real package.** It claims the
4
+ `no-bash-mcp` name under the maintainer account and bootstraps npm OIDC trusted publishing (which can
5
+ only be configured on a package that already exists).
6
+
7
+ The real **no-bash-mcp** is a Micronaut MCP server that replaces an agent's Bash tool with safe,
8
+ structured, token-efficient operations so the Bash permission can be removed. The npm launcher ships
9
+ from PRD-5 and selects + runs the native binary matching the host OS/arch.
10
+
11
+ See the repository for the actual project and releases:
12
+ **https://github.com/rodrigorjsf/no-bash-mcp**
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ // Placeholder reservation for the `no-bash-mcp` name. This is NOT the real launcher — it exists only
4
+ // to (1) claim the unscoped name under the maintainer account and (2) bootstrap npm OIDC trusted
5
+ // publishing (which can only be configured on a package that already exists). The real launcher ships
6
+ // from PRD-5: https://github.com/rodrigorjsf/no-bash-mcp
7
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "no-bash-mcp",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder reservation for the no-bash-mcp MCP server launcher. The real launcher ships from PRD-5; see the repository.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/rodrigorjsf/no-bash-mcp.git"
9
+ },
10
+ "homepage": "https://github.com/rodrigorjsf/no-bash-mcp#readme",
11
+ "keywords": [
12
+ "mcp",
13
+ "model-context-protocol",
14
+ "placeholder"
15
+ ],
16
+ "files": [
17
+ "index.js",
18
+ "README.md"
19
+ ]
20
+ }