Skip to main content
Glama

Clipboard to Supabase MCP Helper

fs.ts373 B
import fs from "fs/promises"; /** * Safely removes a file, ignoring ENOENT (file not found) errors * @param path - Path to the file to remove */ export async function safeRemove(path: string): Promise<void> { try { await fs.rm(path); } catch (err: any) { // Ignore "file not found" errors, but throw others if (err?.code !== "ENOENT") throw err; } }

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/martinbowling/clipboard-to-supabase-mcp-helper'

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