/** Common MCP server presets so the operator doesn't have to remember * the full @modelcontextprotocol/server-* package names. Add new * presets here as the ecosystem grows; '(custom)' is always last. */ interface ServerPreset { label: string; transport: 'stdio' | 'http'; command?: string; args?: string[]; url?: string; hint?: string; } export declare function runSetupMcp(argv: string[]): Promise; declare function suggestServerName(preset: ServerPreset): string; export declare const _internal: { suggestServerName: typeof suggestServerName; PRESETS: ServerPreset[]; }; export {}; //# sourceMappingURL=setup-mcp.d.ts.map