/** * PyCharm config generator. * * Config: .ai/mcp/mcp.json (project-level) or IDE Settings → Tools → AI Assistant → MCP * Format: { "mcpServers": { "name": { "command", "args", "env" } } } * * PyCharm's AI Assistant accepts MCP server configs in the same JSON format * as Claude Desktop — essentially a passthrough. Supports stdio, streamable-http, * and SSE transports. * * PyCharm supports project-level MCP configuration via .ai/mcp/mcp.json, * similar to how VS Code uses .vscode/mcp.json. This file is shareable via * version control and uses the canonical mcpServers format. * * Requires the JetBrains AI Assistant plugin: * https://plugins.jetbrains.com/plugin/22282-jetbrains-ai-assistant * * Important: PyCharm must be closed and reopened for config changes to take effect. */ import type { AppMetadata } from "@getmcp/core"; import { BaseGenerator } from "./base.js"; export declare class PyCharmGenerator extends BaseGenerator { app: AppMetadata; } //# sourceMappingURL=pycharm.d.ts.map