Skip to main content
Glama
aegntic

Obsidian Elite RAG MCP Server

logger.ts655 B
/** * Simple logger utility for MCP server */ export const logger = { info: (message: string, data?: any) => { console.log(`[INFO] ${new Date().toISOString()} - ${message}`, data || ''); }, error: (message: string, error?: any) => { console.error(`[ERROR] ${new Date().toISOString()} - ${message}`, error || ''); }, warn: (message: string, data?: any) => { console.warn(`[WARN] ${new Date().toISOString()} - ${message}`, data || ''); }, debug: (message: string, data?: any) => { if (process.env.NODE_ENV === 'development') { console.debug(`[DEBUG] ${new Date().toISOString()} - ${message}`, data || ''); } } };

Latest Blog Posts

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/aegntic/aegntic-MCP'

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