@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.
10 lines • 330 B
TypeScript
/**
* Echo Tool - Simple example MCP tool with user awareness
* Echoes back the provided text along with user information
*/
import { MCPTool, ToolResult } from './types.js';
export interface EchoToolArgs {
text: string;
}
export declare const echoTool: MCPTool<EchoToolArgs, ToolResult>;
//# sourceMappingURL=echo.d.ts.map