We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/akramIOT/ZTA_MCP_Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
auth_cert.py•316 B
from fastapi import Request, HTTPException
def verify_certificate(request: Request):
cert = request.headers.get("X-Client-Cert")
if not cert or cert != "valid_cert": # replace with real cert logic
raise HTTPException(status_code=403, detail="Invalid or missing client certificate")
return True