Skip to main content
Glama

Sentry MCP

Official
by getsentry
errors.ts721 B
/** * Error thrown when user input validation fails. * These errors should be returned to the user directly without logging to Sentry. */ export class UserInputError extends Error { constructor(message: string, options?: ErrorOptions) { super(message, options); this.name = "UserInputError"; } } /** * Error thrown when configuration is invalid or missing. * These errors should be returned to the user directly without logging to Sentry. * Typically used for environment configuration issues, connection settings, etc. */ export class ConfigurationError extends Error { constructor(message: string, options?: ErrorOptions) { super(message, options); this.name = "ConfigurationError"; } }

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/getsentry/sentry-mcp'

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