Skip to main content
Glama

News Aggregator API

logger.ts577 B
/** * Simple logger utility for consistent logging across the application */ export const logger = { info: (message: string, ...args: any[]) => { console.log(`[INFO] ${message}`, ...args); }, error: (message: string, ...args: any[]) => { console.error(`[ERROR] ${message}`, ...args); }, warn: (message: string, ...args: any[]) => { console.warn(`[WARN] ${message}`, ...args); }, debug: (message: string, ...args: any[]) => { if (process.env.NODE_ENV !== 'production') { console.debug(`[DEBUG] ${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/Malachi-devel/the-news-api-mcp-server'

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