We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c41c4d1 commit 09f517cCopy full SHA for 09f517c
src/mci/cli/envs.py
@@ -84,9 +84,10 @@ def extract_env_vars_from_schema(schema_path: str) -> dict[str, list[str]]:
84
if var not in env_vars:
85
env_vars[var] = set()
86
env_vars[var].add(toolset_name)
87
- except Exception:
+ except Exception as e:
88
# Warn but continue if toolset file is invalid
89
- pass
+ console = Console()
90
+ console.print(f"[yellow]⚠[/yellow] Warning: Could not load toolset '{toolset_name}': {e}", style="yellow")
91
92
# Scan MCP servers
93
mcp_servers = main_schema.get("mcp_servers", {})
0 commit comments