@emmahyde/thinking-patterns
Version:
MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support
23 lines (22 loc) • 562 B
TypeScript
/**
* Initialize and register all available thinking-patterns tools
*/
export declare function initializeToolRegistry(): void;
/**
* Get tool definitions for MCP ListTools response
*/
export declare function getToolDefinitions(): Array<{
name: string;
description: string;
inputSchema: Record<string, unknown>;
}>;
/**
* Process tool request using registry
*/
export declare function processToolRequest(toolName: string, arguments_: unknown): {
content: Array<{
type: string;
text: string;
}>;
isError?: boolean;
};