@emmahyde/thinking-patterns
Version:
MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support
18 lines (17 loc) • 717 B
TypeScript
import { BaseToolServer } from '../base/BaseToolServer.js';
import { RecursiveThinkingData } from '../schemas/index.js';
/**
* Recursive Thinking Server using thinking-patterns tools approach
* Extends BaseToolServer for standardized validation and error handling
*/
export declare class RecursiveThinkingServer extends BaseToolServer<RecursiveThinkingData, any> {
constructor();
protected handle(validInput: RecursiveThinkingData): any;
/**
* Standardized process method for recursive thinking
* @param validInput - Validated recursive thinking data
* @returns Processed recursive thinking result
*/
process(validInput: RecursiveThinkingData): any;
private formatOutput;
}