We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Y5ive9ine/dicom-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.py•1.18 kB
"""
DICOM configuration using Pydantic.
"""
import yaml
from pathlib import Path
from typing import Dict
from pydantic import BaseModel
class DicomNodeConfig(BaseModel):
"""Configuration for a DICOM node"""
host: str
port: int
ae_title: str
description: str = ""
class DicomConfiguration(BaseModel):
"""Complete DICOM configuration"""
nodes: Dict[str, DicomNodeConfig]
current_node: str
calling_aet: str
def load_config(config_path: str) -> DicomConfiguration:
"""Load DICOM configuration from YAML file.
Args:
config_path: Path to the configuration file
Returns:
Parsed DicomConfiguration object
Raises:
FileNotFoundError: If the configuration file doesn't exist
ValueError: If the configuration is invalid
"""
path = Path(config_path)
if not path.exists():
raise FileNotFoundError(f"Configuration file {path} not found")
with open(path, 'r') as f:
data = yaml.safe_load(f)
try:
return DicomConfiguration(**data)
except Exception as e:
raise ValueError(f"Invalid configuration in {path}: {str(e)}")