We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minipuft/claude-prompts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tool-routing.d.ts•466 B
export interface ToolRoutingResult {
requiresRouting: boolean;
targetTool?: string;
translatedParams?: Record<string, any>;
originalCommand?: string;
}
/**
* Detects whether a raw command string should be routed to an internal handler
* (prompt manager, system control, etc.) before the prompt engine attempts to
* parse it as a template/chain instruction.
*/
export declare function detectToolRoutingCommand(command: string): ToolRoutingResult;