We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zazzles2908/EX_AI-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_rbac.py•243 B
from security.rbac import RBAC
def test_rbac_policies():
r = RBAC()
assert r.can_execute("analyze", "developer") is True
assert r.can_execute("consensus", "viewer") is False
assert r.can_execute("anything", "admin") is True