Skip to main content
Glama

Clipboard to Supabase MCP Helper

index.ts654 B
import { platform } from 'os'; import * as macOS from './macos.js'; import * as windows from './windows.js'; import * as linux from './linux.js'; const PLATFORM = platform(); // Export the appropriate platform-specific functions export const getImageFromClipboard = PLATFORM === 'darwin' ? macOS.getImageFromClipboard : PLATFORM === 'win32' ? windows.getImageFromClipboard : linux.getImageFromClipboard; // Export helper function to determine if platform is supported export function getPlatformName(): string { return PLATFORM; } export function isPlatformSupported(): boolean { return ['darwin', 'win32', 'linux'].includes(PLATFORM); }

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