Skip to main content
Glama

Clover MCP Server

/** * Simple logger utility to avoid polluting stdout for MCP */ // Control debug output - set to true to enable verbose logging to stderr const DEBUG = false; export const logger = { /** * Log debug messages - these only go to stderr if DEBUG is true */ debug: (message: string, ...args: any[]) => { if (DEBUG) { console.error(`[DEBUG] ${message}`, ...args); } }, /** * Log info messages - these go to stderr for operator visibility */ info: (message: string, ...args: any[]) => { console.error(`[INFO] ${message}`, ...args); }, /** * Log error messages - these always go to stderr */ error: (message: string, ...args: any[]) => { console.error(`[ERROR] ${message}`, ...args); } };

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/ibraheem4/clover-mcp'

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