Skip to main content
Glama
juliengrelet

Wisembly MCP Server

by juliengrelet
index.ts1.12 kB
export class WisemblyApiError extends Error { constructor( message: string, public status: number, public statusText: string, public response?: string ) { super(message); this.name = 'WisemblyApiError'; if (Error.captureStackTrace) { Error.captureStackTrace(this, WisemblyApiError); } } } export class WisemblyNotFoundError extends WisemblyApiError { constructor(keyword: string, response?: string) { super(`Event "${keyword}" not found`, 404, 'Not Found', response); this.name = 'WisemblyNotFoundError'; } } export class WisemblyUnauthorizedError extends WisemblyApiError { constructor(response?: string) { super('Unauthorized access to Wisembly API', 401, 'Unauthorized', response); this.name = 'WisemblyUnauthorizedError'; } } export class WisemblyServerError extends WisemblyApiError { constructor(status: number, statusText: string, response?: string) { super('Wisembly API server error', status, statusText, response); this.name = 'WisemblyServerError'; } }

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/juliengrelet/mcp-wisembly'

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