octocode-mcp
Version:
Model Context Protocol (MCP) server for advanced GitHub repository analysis and code discovery. Provides AI assistants with powerful tools to search, analyze, and understand codebases across GitHub.
13 lines (12 loc) • 627 B
TypeScript
import type { ServerConfig } from './types.js';
declare function parseStringArray(value?: string): string[] | undefined;
export declare function initialize(): Promise<void>;
export declare function cleanup(): void;
export declare function getServerConfig(): ServerConfig;
export declare function getGitHubToken(): Promise<string | null>;
export declare function getToken(): Promise<string>;
export declare function isBetaEnabled(): boolean;
export declare function isSamplingEnabled(): boolean;
export declare function isLoggingEnabled(): boolean;
export declare function clearCachedToken(): void;
export { parseStringArray };