Skip to main content
Glama
N-Erickson

AetherLink SDR MCP

by N-Erickson
validators.py756 B
""" Validation utilities for AetherLink """ def validate_frequency(freq: float, min_freq: float, max_freq: float) -> bool: """Validate frequency is within range""" return min_freq <= freq <= max_freq def validate_sample_rate(rate: float, min_rate: float, max_rate: float) -> bool: """Validate sample rate is within range""" return min_rate <= rate <= max_rate def is_restricted_frequency(freq: float) -> bool: """Check if frequency is in a restricted band""" restricted_bands = [ (108e6, 137e6), # Aviation (406e6, 406.1e6), # Emergency beacons (1.215e9, 1.39e9), # GPS/GNSS ] for low, high in restricted_bands: if low <= freq <= high: return True return False

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/N-Erickson/AetherLink-SDR-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server