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
U3410__workspace_integration.sql•518 B
CREATE TABLE workspace_integrations
(
pk ident primary key default ident_create_v1(),
slack_webhook_url text NULL,
workspace_pk ident NOT NULL
);
CREATE UNIQUE INDEX ON workspace_integrations (pk);
CREATE UNIQUE INDEX ON workspace_integrations (workspace_pk);
CREATE UNIQUE INDEX ON workspace_integrations (slack_webhook_url, workspace_pk);
CREATE INDEX ON workspace_integrations (slack_webhook_url);
CREATE INDEX ON workspace_integrations (workspace_pk);