UNPKG

context-optimizer-mcp-server

Version:

Context optimization tools MCP server for AI coding assistants - compatible with GitHub Copilot, Cursor AI, and other MCP-supporting assistants

20 lines 739 B
import { BaseMCPTool, MCPToolResponse } from './base'; export declare class AskFollowUpTool extends BaseMCPTool { readonly name = "askFollowUp"; readonly description = "Ask follow-up questions about the previous terminal command execution without re-running the command. Only available after using runAndExtract tool."; readonly inputSchema: { type: string; properties: { question: { type: string; description: string; }; }; required: string[]; }; execute(args: any): Promise<MCPToolResponse>; private processFollowUpQuestion; private createFollowUpPrompt; private getApiKey; } //# sourceMappingURL=askFollowUp.d.ts.map