onyx-mcp-server
Version:
Model Context Protocol (MCP) server for seamless integration with Onyx AI knowledge bases
22 lines (21 loc) • 415 B
TypeScript
/**
* OnyxMcpServer class
* Main server class for the Onyx MCP Server
*/
export declare class OnyxMcpServer {
private server;
private onyxApiService;
/**
* Constructor
*/
constructor();
/**
* Set up tool handlers
*/
private setupToolHandlers;
/**
* Run the server
* @param transport The server transport
*/
run(transport: any): Promise<void>;
}