We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ndaniel/aurora-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
taxonomy.py•376 B
from __future__ import annotations
from typing import Optional
def guess_genus(taxon_name: str) -> Optional[str]:
"""Best-effort genus guess: return the first token before a space."""
if not taxon_name:
return None
stripped = taxon_name.strip()
if not stripped:
return None
genus, _, _ = stripped.partition(" ")
return genus or None