Skip to main content
Glama

ACE MCP Server

errors.tsโ€ข869 B
/** * Base error class for ACE MCP Server. */ export class ACEError extends Error { constructor(message: string) { super(message); this.name = 'ACEError'; Object.setPrototypeOf(this, ACEError.prototype); } } /** * Error thrown by LLM providers. */ export class LLMProviderError extends ACEError { constructor( message: string, public readonly provider: string, public readonly originalError?: Error ) { super(message); this.name = 'LLMProviderError'; Object.setPrototypeOf(this, LLMProviderError.prototype); } } /** * Error thrown for configuration issues. */ export class ConfigurationError extends ACEError { constructor( message: string, public readonly field?: string ) { super(message); this.name = 'ConfigurationError'; Object.setPrototypeOf(this, ConfigurationError.prototype); } }

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/Angry-Robot-Deals/ace-mcp'

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