UNPKG

thoughtmcp

Version:

AI that thinks more like humans do - MCP server with human-like cognitive architecture for enhanced reasoning, memory, and self-monitoring

28 lines 967 B
#!/usr/bin/env node /** * Example client demonstrating all cognitive tools in the ThoughtMCP server * This client shows how to interact with the cognitive architecture through MCP */ import { Client } from "@modelcontextprotocol/sdk/client/index.js"; import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js"; interface CognitiveClient { client: Client; transport: StdioClientTransport; } declare class ThoughtMCPClient { private cognitiveClient; get client(): CognitiveClient; connect(): Promise<void>; disconnect(): Promise<void>; demonstrateThinking(): Promise<void>; demonstrateMemory(): Promise<void>; demonstrateReasoningAnalysis(): Promise<void>; runFullDemo(): Promise<void>; } declare class PerformanceBenchmark { private client; constructor(); benchmarkThinking(): Promise<void>; } export { PerformanceBenchmark, ThoughtMCPClient }; //# sourceMappingURL=cognitive-client.d.ts.map