We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/biocontext-ai/knowledgebase-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
_slugify.py•278 B
def slugify(name: str) -> str:
"""Slugify a name by replacing spaces with underscores and converting to lowercase.
Allow only alphanumeric characters and underscores.
"""
return "".join(c if c.isalnum() else "-" for c in name.strip().replace(" ", "-").lower())