We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DasBluEyedDevil/Daemon-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•505 B
"""FastMCP 3.0 Transforms for Daem0n-MCP.
This module provides middleware-style transforms that integrate with
FastMCP 3.0's transform system for intercepting and modifying MCP
operations.
The primary transform is CovenantTransform, which enforces the Sacred
Covenant protocol:
COMMUNE (get_briefing) -> SEEK COUNSEL (context_check) -> INSCRIBE (remember) -> SEAL (record_outcome)
"""
from .covenant import CovenantTransform, CovenantViolation
__all__ = ["CovenantTransform", "CovenantViolation"]