@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) • 784 B
TypeScript
import { BaseToolServer } from '../base/BaseToolServer.js';
import { StructuredArgumentationData } from '../schemas/index.js';
/**
* Structured Argumentation Server using thinking-patterns tools approach
* Extends BaseToolServer for standardized validation and error handling
*/
export declare class StructuredArgumentationServer extends BaseToolServer<StructuredArgumentationData, any> {
constructor();
protected handle(validInput: StructuredArgumentationData): any;
/**
* Standardized process method for structured argumentation
* @param validInput - Validated structured argumentation data
* @returns Processed structured argumentation result
*/
process(validInput: StructuredArgumentationData): any;
private formatArgumentationOutput;
}