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.

17 lines 477 B
/** * Run System Command Tool * Execute system commands using the toolflow CLI */ import { MCPTool, ToolResult } from './types.js'; /** * Run system command arguments */ export interface RunSystemCommandArgs { command: string; args?: string[]; timeout?: number; working_directory?: string; capture_output?: boolean; } export declare const runSystemCommandTool: MCPTool<RunSystemCommandArgs, ToolResult>; //# sourceMappingURL=run-system-command.d.ts.map