/** * AWS Q Developer Configuration Generator * Generates MCP configuration for AWS Q Developer. * * Updated 2026-07-19 (Spec-16 R5.3): * Replaced fictional /api/awsq endpoint with standard stdio MCP transport. * Q Developer supports MCP via its IDE extensions. * * ✅ VERIFIED (2026-07-20): * Source: docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/mcp-ide.html * (confirmed via llms.txt which lists 5 MCP pages). * The current standard path is .amazonq/default.json (local) or * ~/.aws/amazonq/default.json (global). However, .amazonq/mcp.json is * an explicitly documented legacy path still supported by default * (useLegacyMcpJson: true in default.json). This generator uses the * legacy mcp.json path because it is a dedicated MCP-only file, making * it safer for programmatic generation than merging into default.json. * The format uses the standard mcpServers key with stdio transport. */ import { BaseConfigGenerator, ConfigOutput } from './BaseConfigGenerator.js'; export declare class AWSQConfigGenerator extends BaseConfigGenerator { getToolName(): string; getFilename(): string; generateConfig(): ConfigOutput; getInstructions(): string; requiresAuth(): boolean; } //# sourceMappingURL=AWSQConfigGenerator.d.ts.map