import { Tool } from '@modelcontextprotocol/sdk/types.js'; /** * All available MCP tools for Discord server management */ export declare const allTools: Tool[]; /** * Execute a tool by name with the given arguments */ export declare function executeTool(name: string, args: Record): Promise; /** * Get a tool definition by name */ export declare function getTool(name: string): Tool | undefined;