We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oraios/serena'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•397 B
def _check_pascal_available() -> bool:
"""Check if Pascal language server (pasls) is available.
Note: pasls will be auto-downloaded if not present, so Pascal
support is always available.
"""
return True
PASCAL_AVAILABLE = _check_pascal_available()
def is_pascal_available() -> bool:
"""Return True if Pascal language server can be used."""
return PASCAL_AVAILABLE