UNPKG

@monsoft/mcp-github-project-manager

Version:

A Model Context Protocol GitHub Project Manager implementation

16 lines (15 loc) 446 B
/** * Environment configuration type definition * Defines the configuration required for GitHub Project Manager */ export type EnvConfig = { GITHUB_PERSONAL_TOKEN: string; PORT: number; RUN_SSE: number; }; /** * Load environment configuration from command line arguments * @returns Environment configuration * @throws {MissingGitHubTokenError} When GitHub token is not provided */ export declare function loadEnv(): EnvConfig;