Table: mcp_server_tool_grant
Connected to
Section titled “Connected to”This table references:
mcp_server_registration(id) via columnserver_id
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
server_id | uuid | no | References mcp_server_registration(id) |
tool_name | text | no | — |
additional_capability | text | yes | — |
cost_estimate_micros | bigint | no | Default 0 |
enabled | boolean | no | Default true |
Constraints
Section titled “Constraints”CONSTRAINT mcp_server_tool_grant_cost_estimate_micros_check CHECK ((cost_estimate_micros >= 0))
Full DDL
Section titled “Full DDL”CREATE TABLE public.mcp_server_tool_grant ( server_id uuid NOT NULL, tool_name text NOT NULL, additional_capability text, cost_estimate_micros bigint DEFAULT 0 NOT NULL, enabled boolean DEFAULT true NOT NULL, CONSTRAINT mcp_server_tool_grant_cost_estimate_micros_check CHECK ((cost_estimate_micros >= 0)));Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.