MCPcopy Create free account
hub / github.com/bytebase/dbhub / CustomToolConfig

Interface CustomToolConfig

src/types/config.ts:94–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92 * Custom tool configuration
93 */
94export interface CustomToolConfig {
95 name: string; // Must not be "execute_sql" or "search_objects"
96 source: string;
97 description: string;
98 statement: string;
99 parameters?: ParameterConfig[];
100 readonly?: boolean;
101 max_rows?: number;
102}
103
104/**
105 * Unified tool configuration (discriminated union)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected