UNPKG

@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.

18 lines 529 B
/** * Tools Registry * Exports all available MCP tools with user-aware support */ import { MCPTool } from './types.js'; export declare const tools: Record<string, MCPTool>; export type ToolName = keyof typeof tools; export declare function getTool(name: string): MCPTool | undefined; export declare function listTools(): { name: string; description: string; inputSchema: { type: "object"; properties: Record<string, any>; required?: string[]; }; }[]; //# sourceMappingURL=index.d.ts.map