@aiwerk/mcp-bridge 2.8.16 → 2.8.17

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.
@@ -119,7 +119,7 @@ export class McpRouter {
119
119
  name: r.name,
120
120
  description: r.description || "",
121
121
  category: r.category,
122
- auth: "none", // Search results don't include auth info
122
+ auth: r.authSummary || (r.authRequired ? "required" : "none"),
123
123
  }))
124
124
  };
125
125
  }
@@ -136,12 +136,12 @@ export class McpRouter {
136
136
  const recipeList = await this.catalogClient.list({ limit: 200 });
137
137
  return {
138
138
  action: "catalog",
139
- recipes: recipeList.results.map(r => ({
139
+ recipes: recipeList.results.map((r) => ({
140
140
  id: r.name,
141
141
  name: r.name,
142
142
  description: r.description || "",
143
143
  category: r.category,
144
- auth: "none", // List results don't include auth info
144
+ auth: r.authSummary || (r.authRequired ? "required" : "none"),
145
145
  }))
146
146
  };
147
147
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiwerk/mcp-bridge",
3
- "version": "2.8.16",
3
+ "version": "2.8.17",
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",