We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
U0003__authentication_method.sql•407 B
ALTER TABLE audit_logs
ADD COLUMN authentication_method JSONB;
-- Set authentication_method = 'Jwt(Web)' for rows where user_id is not null
UPDATE audit_logs
SET authentication_method = '{"method":"Jwt","role":"Web"}'
WHERE user_id IS NOT NULL;
-- Set authentication_method = 'System' for rows where user_id is null
UPDATE audit_logs
SET authentication_method = '{"method":"System"}'
WHERE user_id IS NULL;