Skip to main content
Glama
biocontext-ai

BioContextAI Knowledgebase MCP

Official
_slugify.py278 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())

Implementation Reference

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/biocontext-ai/knowledgebase-mcp'

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