UNPKG

@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) 708 B
import { BaseToolServer } from '../base/BaseToolServer.js'; import { TemporalThinkingData } from '../schemas/index.js'; /** * Temporal Thinking Server using thinking-patterns tools approach * Extends BaseToolServer for standardized validation and error handling */ export declare class TemporalThinkingServer extends BaseToolServer<TemporalThinkingData, any> { constructor(); protected handle(validInput: TemporalThinkingData): any; /** * Standardized process method for temporal thinking * @param validInput - Validated temporal thinking data * @returns Processed temporal thinking result */ process(validInput: TemporalThinkingData): any; private formatOutput; }