UNPKG

vibe-coder-mcp

Version:

Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.

17 lines 730 B
import { CallToolResult } from '@modelcontextprotocol/sdk/types.js'; export interface InteractionHistory { toolCall: { name: string; params: Record<string, unknown>; timestamp: number; }; response: CallToolResult & { timestamp: number; }; } export declare function addInteraction(sessionId: string, historyEntry: InteractionHistory): void; export declare function getLastInteraction(sessionId: string): InteractionHistory | undefined; export declare function getSessionHistory(sessionId: string): InteractionHistory[]; export declare function clearSessionHistory(sessionId: string): void; export declare function clearAllHistories(): void; //# sourceMappingURL=sessionState.d.ts.map