We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Wayfinder-Foundry/gdal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
direction.py•408 B
"""Directional enumerations for spatial extent metadata."""
from .string import String
class Cardinal(String):
"""Cardinal directions for spatial extent bounds."""
NORTH = "north"
SOUTH = "south"
EAST = "east"
WEST = "west"
class Relative(String):
"""Relative directions for spatial extent bounds."""
LEFT = "left"
RIGHT = "right"
TOP = "top"
BOTTOM = "bottom"