@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) • 725 B
TypeScript
import { BaseToolServer } from '../base/BaseToolServer.js';
import { DecisionFrameworkData } from '../schemas/index.js';
/**
* Decision Framework Server using thinking-patterns tools approach
* Extends BaseToolServer for standardized validation and error handling
*/
export declare class DecisionFrameworkServer extends BaseToolServer<DecisionFrameworkData, any> {
constructor();
protected handle(validInput: DecisionFrameworkData): any;
/**
* Standardized process method for decision framework
* @param validInput - Validated decision framework data
* @returns Processed decision framework result
*/
process(validInput: DecisionFrameworkData): any;
private formatDecisionOutput;
}