@platf/bridge 0.0.4 → 0.0.8

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 +10 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -23,6 +23,16 @@ bun run src/index.ts --stdio "npx -y @modelcontextprotocol/server-everything" --
23
23
 
24
24
  ## Docker
25
25
 
26
+ You can use the pre-built image from GitHub Container Registry:
27
+
28
+ ```bash
29
+ docker run -p 8000:8000 ghcr.io/platf-ai/bridge:latest \
30
+ --stdio "npx -y @modelcontextprotocol/server-everything" \
31
+ --cors '*' --healthEndpoint /healthz
32
+ ```
33
+
34
+ Or build locally:
35
+
26
36
  ```bash
27
37
  docker build -t platf-mcp-bridge .
28
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platf/bridge",
3
- "version": "0.0.4",
3
+ "version": "0.0.8",
4
4
  "description": "Stdio-to-Streamable HTTP bridge for MCP servers — Platf AI Hub",
5
5
  "module": "src/index.ts",
6
6
  "main": "dist/index.js",