We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1afba6 commit 2bbac2fCopy full SHA for 2bbac2f
1 file changed
src/scanner.rs
@@ -476,6 +476,7 @@ fn scan_codex(root: &Path, scope: Scope) -> Vec<ConfigItem> {
476
477
fn scan_antigravity(root: &Path, scope: Scope) -> Vec<ConfigItem> {
478
let mut items = vec![];
479
+ let d = provider_dir(ProviderId::Antigravity, root, scope);
480
if scope == Scope::Project {
481
items.extend(check_file(
482
root.join("GEMINI.md"),
@@ -511,6 +512,13 @@ fn scan_antigravity(root: &Path, scope: Scope) -> Vec<ConfigItem> {
511
512
ProviderId::Antigravity,
513
));
514
}
515
+ // MCP servers from mcp_config.json (Antigravity CLI uses a separate file)
516
+ items.extend(scan_json_keys(
517
+ &d.join("mcp_config.json"),
518
+ "mcpServers",
519
+ ItemKind::Mcp,
520
+ ProviderId::Antigravity,
521
+ ));
522
items
523
524
0 commit comments