Skip to main content
Glama

docs-mcp-server

errors.ts528 B
export class PipelineError extends Error { constructor( message: string, public readonly cause?: Error, ) { super(message); this.name = this.constructor.name; if (cause?.stack) { this.stack = `${this.stack}\nCaused by: ${cause.stack}`; } } } export class PipelineStateError extends PipelineError {} /** * Error indicating that an operation was cancelled. */ export class CancellationError extends PipelineError { constructor(message = "Operation cancelled") { super(message); } }

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/arabold/docs-mcp-server'

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