/** * Claude Desktop config generator. * * Config file: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) * %AppData%\Claude\claude_desktop_config.json (Windows) * Format: { "mcpServers": { "name": { "command", "args", "env" } } } * * This is essentially a passthrough — the canonical format IS the Claude Desktop format. */ import type { AppMetadata } from "@getmcp/core"; import { BaseGenerator } from "./base.js"; export declare class ClaudeDesktopGenerator extends BaseGenerator { app: AppMetadata; detectInstalled(): boolean; } //# sourceMappingURL=claude-desktop.d.ts.map