Skip to main content
Glama
U0021__jwt_keys.sql683 B
CREATE TABLE jwt_keys ( pk ident primary key default ident_create_v1(), public_key text, private_key text, nonce bytea, created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CLOCK_TIMESTAMP(), updated_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CLOCK_TIMESTAMP() ); CREATE OR REPLACE FUNCTION jwt_key_create_v1(this_public_key text, this_private_key text, this_nonce bytea) RETURNS VOID AS $$ BEGIN INSERT INTO jwt_keys (public_key, private_key, nonce) VALUES (this_public_key, this_private_key, this_nonce); END; $$ LANGUAGE PLPGSQL VOLATILE;

Latest Blog Posts

MCP directory API

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