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
U0001__cas.sql•428 B
CREATE TABLE cas
(
key text NOT NULL PRIMARY KEY,
sort_key text NOT NULL,
created_at timestamp with time zone NOT NULL DEFAULT CLOCK_TIMESTAMP(),
value bytea NOT NULL,
serialization_lib text NOT NULL DEFAULT 'postcard'
);
CREATE INDEX IF NOT EXISTS cas_sort_key ON cas (sort_key);