decocms
Version:
CLI for managing deco.chat apps & projects
27 lines • 797 B
TypeScript
type MCPServerConfig = {
command: string;
args: string[];
} | {
url: string;
type: "http" | "sse";
headers?: Record<string, string>;
};
export interface MCPConfig {
mcpServers: Record<string, MCPServerConfig>;
}
interface IDEConfig {
content: string;
path: string;
}
export declare function writeIDEConfig(configs: IDEConfig[]): Promise<void>;
export declare const hasMCPPreferences: (workspace: string, app: string) => Promise<boolean>;
export declare const setMCPPreferences: (workspace: string, app: string) => Promise<void>;
export declare function promptIDESetup(cfg: {
workspace: string;
app: string;
}, projectRoot?: string): Promise<Array<{
content: string;
path: string;
}> | null>;
export {};
//# sourceMappingURL=prompt-ide-setup.d.ts.map