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
U3001__change_set_pointers.sql•654 B
CREATE TABLE change_set_pointers
(
id ident primary key NOT NULL DEFAULT ident_create_v1(),
created_at timestamp with time zone NOT NULL DEFAULT CLOCK_TIMESTAMP(),
updated_at timestamp with time zone NOT NULL DEFAULT CLOCK_TIMESTAMP(),
name text NOT NULL,
base_change_set_id ident,
status text NOT NULL,
workspace_id ident REFERENCES workspaces (pk) DEFERRABLE,
workspace_snapshot_address text,
merge_requested_by_user_id ident
);