@grebyn/toolflow-mcp-server
Version:
MCP server for managing other MCP servers - discover, install, organize into bundles, and automate with workflows. Uses StreamableHTTP transport with dual OAuth/API key authentication.
15 lines • 394 B
TypeScript
/**
* List Bundles Tool
* Search and paginate through bundles with unified scope model
*/
import { MCPTool, ToolResult } from '../types.js';
/**
* List bundles arguments
*/
export interface ListBundlesArgs {
query?: string;
limit?: number;
offset?: number;
}
export declare const listBundlesTool: MCPTool<ListBundlesArgs, ToolResult>;
//# sourceMappingURL=list-bundles.d.ts.map