Skip to main content
Glama
aliyun

Alibaba Cloud Supabase MCP Server

Official
by aliyun
edge-function.ts819 B
import { codeBlock } from 'common-tags'; /** * Gets the deployment ID for an Edge Function. */ export function getDeploymentId( projectId: string, functionId: string, functionVersion: number ): string { return `${projectId}_${functionId}_${functionVersion}`; } /** * Gets the path prefix applied to each file in an Edge Function. */ export function getPathPrefix(deploymentId: string) { return `/tmp/user_fn_${deploymentId}/`; } export const edgeFunctionExample = codeBlock` import "jsr:@supabase/functions-js/edge-runtime.d.ts"; Deno.serve(async (req: Request) => { const data = { message: "Hello there!" }; return new Response(JSON.stringify(data), { headers: { 'Content-Type': 'application/json', 'Connection': 'keep-alive' } }); }); `;

Latest Blog Posts

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/aliyun/alibabacloud-supabase-mcp-server'

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