Skip to main content
Glama

Supabase MCP Server

by Quegenx
types.ts542 B
import { Pool } from "pg"; // Interface for tool handler parameters export interface ToolHandlerParams { pool: Pool; params: any; } // Interface for tool handler function export interface ContentItem { type: string; text: string; } export interface ToolHandlerResult { content: ContentItem[]; } export type ToolHandler = (params: ToolHandlerParams) => Promise<ToolHandlerResult>; // Interface for tool definition export interface ToolDefinition { name: string; description: string; schema: any; handler: ToolHandler; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Quegenx/supabase-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server