Skip to main content
Glama

Excalidraw MCP Server

by i-tozer
export class ExcalidrawError extends Error { constructor(message: string) { super(message); this.name = 'ExcalidrawError'; } } export class ExcalidrawValidationError extends ExcalidrawError { response?: any; constructor(message: string, response?: any) { super(message); this.name = 'ExcalidrawValidationError'; this.response = response; } } export class ExcalidrawResourceNotFoundError extends ExcalidrawError { constructor(message: string) { super(message); this.name = 'ExcalidrawResourceNotFoundError'; } } export class ExcalidrawAuthenticationError extends ExcalidrawError { constructor(message: string) { super(message); this.name = 'ExcalidrawAuthenticationError'; } } export class ExcalidrawPermissionError extends ExcalidrawError { constructor(message: string) { super(message); this.name = 'ExcalidrawPermissionError'; } } export class ExcalidrawRateLimitError extends ExcalidrawError { resetAt: Date; constructor(message: string, resetAt: Date) { super(message); this.name = 'ExcalidrawRateLimitError'; this.resetAt = resetAt; } } export class ExcalidrawConflictError extends ExcalidrawError { constructor(message: string) { super(message); this.name = 'ExcalidrawConflictError'; } } export function isExcalidrawError(error: any): error is ExcalidrawError { return error instanceof ExcalidrawError; }

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/i-tozer/excalidraw-mcp'

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