Skip to main content
Glama

CodeAnalysis MCP Server

by 0xjcf
logger.ts485 B
/** * Simple logger utility for the application */ export const logger = { debug: (message: string): void => { if (process.env.DEBUG === "true") { console.debug(`[DEBUG] ${message}`); } }, info: (message: string): void => { console.info(`[INFO] ${message}`); }, warn: (message: string): void => { console.warn(`[WARN] ${message}`); }, error: (message: string): void => { console.error(`[ERROR] ${message}`); }, }; export default logger;

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/0xjcf/MCP_CodeAnalysis'

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