UNPKG

mcpresso

Version:

TypeScript package for Model Context Protocol (MCP) utilities and tools

12 lines 344 B
export interface ProjectConfig { template: string; name: string; description: string; authType: 'none' | 'oauth' | 'token'; oauth: boolean; token: boolean; git: boolean; install: boolean; } export declare function createProject(config: ProjectConfig): Promise<void>; //# sourceMappingURL=project-creator.d.ts.map