@aiwerk/mcp-bridge 2.8.33 → 2.8.34

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.
@@ -593,8 +593,11 @@ async function cmdInstall(serverName, args, logger) {
593
593
  }
594
594
  else {
595
595
  process.stdout.write(`All required environment variables are set. Ready to use.\n`);
596
- // Pre-discover tools and cache them (so direct mode has tools on first start)
597
- process.stdout.write(`\nDiscovering tools...\n`);
596
+ }
597
+ // Pre-discover tools and cache them (so direct mode has tools on first start)
598
+ // Try even with missing env vars — many servers respond to tools/list without auth
599
+ process.stdout.write(`\nDiscovering tools...\n`);
600
+ {
598
601
  try {
599
602
  const { StdioTransport } = await import("../src/transport-stdio.js");
600
603
  const { SseTransport } = await import("../src/transport-sse.js");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiwerk/mcp-bridge",
3
- "version": "2.8.33",
3
+ "version": "2.8.34",
4
4
  "description": "Standalone MCP server that multiplexes multiple MCP servers into one interface",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",