@noanswer/context-compose
Version:
Orchestrate complex AI interactions with Context Compose. A powerful CLI and server for building, validating, and managing context for large language models using the Model Context Protocol (MCP).
14 lines (13 loc) • 743 B
TypeScript
import type { StartContextToolInput, StartContextToolResponse } from '../../schemas/start-context.js';
/**
* Main tool logic for starting a context.
* It reads the specified context file and constructs the initial prompt.
*/
export declare function executeStartContext(input: StartContextToolInput): Promise<StartContextToolResponse>;
/**
* Validates the input arguments for the Start Context tool and executes the core logic.
* This function serves as the main entry point for the MCP tool, ensuring
* that the provided arguments are valid before proceeding.
* It reads the specified context file and constructs the initial prompt.
*/
export declare function executeStartContextTool(args: unknown): Promise<StartContextToolResponse>;