We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
errors.ts•712 B
/**
* Error classes for the CloudFormation database module.
*
* This module defines custom error types used throughout the CloudFormation
* database implementation.
*
* @module errors
*/
/**
* Error thrown when a command fails to execute properly
*/
export class CommandFailed extends Error {
constructor(message: string) {
super(message);
this.name = "CommandFailed";
}
}
/**
* Error thrown when attempting to access a CloudFormation service that doesn't exist
*/
export class ServiceMissing extends Error {
constructor(serviceName: string) {
super(
`Attempt to find schema for service ${serviceName}, but it does not exist`,
);
this.name = "SchemaMissing";
}
}