@aiwerk/mcp-bridge 2.8.15 → 2.8.16

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.
@@ -133,7 +133,7 @@ export class McpRouter {
133
133
  return this.error("mcp_error", "Catalog client not available");
134
134
  }
135
135
  try {
136
- const recipeList = await this.catalogClient.list();
136
+ const recipeList = await this.catalogClient.list({ limit: 200 });
137
137
  return {
138
138
  action: "catalog",
139
139
  recipes: recipeList.results.map(r => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiwerk/mcp-bridge",
3
- "version": "2.8.15",
3
+ "version": "2.8.16",
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",