UNPKG

@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).

22 lines (21 loc) 504 B
/** * Main MCP server class that integrates with Context Compose */ declare class ContextComposeServer { private server; private initialized; constructor(); /** * Initialize the MCP server with necessary tools and routes */ init(): Promise<ContextComposeServer | undefined>; /** * Start the MCP server */ start(): Promise<ContextComposeServer>; /** * Stop the MCP server */ stop(): Promise<void>; } export default ContextComposeServer;