onyx-mcp-server
Version:
Model Context Protocol (MCP) server for seamless integration with Onyx AI knowledge bases
21 lines (20 loc) • 415 B
TypeScript
/**
* Configuration for the Onyx MCP Server
*/
import { OnyxConfig } from '../types/index.js';
/**
* Load configuration from environment variables
* @returns The Onyx configuration
*/
export declare function loadConfig(): OnyxConfig;
/**
* Server configuration
*/
export declare const SERVER_CONFIG: {
name: string;
version: string;
};
/**
* Debug mode flag
*/
export declare const DEBUG: boolean;