We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/darrentmorgan/hostaway-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
-- Drop the recursive SELECT policy on organization_members
-- The "Owners view members" policy causes infinite recursion because it checks
-- organization_members while trying to SELECT from organization_members
DROP POLICY IF EXISTS "Owners view members" ON organization_members;
-- The "Users see own memberships" policy is sufficient for users to see their own membership
-- Owners can already see all members via UPDATE/DELETE policies when needed