We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Prekzursil/omniaudit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from __future__ import annotations
import hashlib
def sha256_hex(content: bytes) -> str:
return hashlib.sha256(content).hexdigest()
def verify_checksum(content: bytes, expected_hex: str) -> bool:
normalized = expected_hex.strip().lower()
return sha256_hex(content) == normalized