We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jezweb/google-calendar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
0003_add_jwks_table.sql•206 B
-- Add JWKS table for better-auth v1.4.0+ JWT key rotation
CREATE TABLE IF NOT EXISTS jwks (
id TEXT PRIMARY KEY,
public_key TEXT NOT NULL,
private_key TEXT NOT NULL,
created_at INTEGER NOT NULL
);