describeMcpConfigFilePath function
Human-readable description of the config file path for a scope.
Implementation
String describeMcpConfigFilePath(McpConfigScope scope) {
switch (scope) {
case McpConfigScope.local:
return '.neomage/mcp.json (local)';
case McpConfigScope.user:
return '~/.neomage/mcp.json (user)';
case McpConfigScope.project:
return '.mcp.json (project)';
}
}