Alias for load_sync for backward compatibility.
(cls, config_path: Path)
| 197 | |
| 198 | @classmethod |
| 199 | def load_from_file(cls, config_path: Path) -> MCPConfig: |
| 200 | """Alias for load_sync for backward compatibility.""" |
| 201 | return cls.load_sync(config_path) |
| 202 | |
| 203 | |
| 204 | class ConfigOverride(BaseModel): |