@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.
- package/dist/src/mcp-router.js +1 -1
- package/package.json +1 -1
package/dist/src/mcp-router.js
CHANGED
|
@@ -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 => ({
|