Skip to main content
Glama

Excalidraw MCP Server

by yctimlin
logger.ts686 B
import winston from 'winston'; const logger: winston.Logger = winston.createLogger({ level: process.env.LOG_LEVEL || 'info', format: winston.format.combine( winston.format.timestamp({ format: 'YYYY-MM-DD HH:mm:ss.SSS' }), winston.format.uncolorize(), winston.format.printf(info => `${info.timestamp} [${info.level}] ${info.message}` ) ), transports: [ new winston.transports.Console({ level: 'warn', // only warn+error to stderr stderrLevels: ['warn','error'] }), new winston.transports.File({ filename: 'excalidraw.log', // all levels to file level: 'debug' }) ] }); 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/yctimlin/mcp_excalidraw'

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