We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jfarcand/pierre_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
20260206000001_revoke_plaintext_refresh_tokens.sql•450 B
-- Revoke all existing OAuth2 refresh tokens that were stored as plaintext.
-- After this migration, the application stores HMAC-SHA256 hashes of refresh
-- tokens instead of plaintext values. Existing plaintext tokens cannot match
-- the new hashed lookups, so they are revoked to avoid orphaned rows.
-- Users will seamlessly re-authenticate and receive new (properly hashed) tokens.
UPDATE oauth2_refresh_tokens SET revoked = 1 WHERE revoked = 0;