Skip to content

Table: mcp_server_tool_grant

This table references:

ColumnTypeNullableNotes
server_iduuidnoReferences mcp_server_registration(id)
tool_nametextno
additional_capabilitytextyes
cost_estimate_microsbigintnoDefault 0
enabledbooleannoDefault true
  • CONSTRAINT mcp_server_tool_grant_cost_estimate_micros_check CHECK ((cost_estimate_micros >= 0))
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.