(cls)
| 697 | |
| 698 | @classmethod |
| 699 | def get_instance(cls) -> "MCPConfig": |
| 700 | with cls.__lock: |
| 701 | if cls.__instance is None: |
| 702 | cls.__instance = cls(servers_list=[], config_scope="global") |
| 703 | return cls.__instance |
| 704 | |
| 705 | @classmethod |
| 706 | def clear_project_instances(cls): |
no outgoing calls
no test coverage detected