Skip to main content
Glama

DevDocs MCP Server

by cyberagiinc
utils.py289 B
from urllib.parse import urlparse def normalize_url(url: str) -> str: """Normalize URL by removing trailing slashes and fragments""" parsed = urlparse(url) path = parsed.path.rstrip('/') if not path: path = '/' return f"{parsed.scheme}://{parsed.netloc}{path}"

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/cyberagiinc/DevDocs'

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