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•356 B
export class CommandFailed extends Error {
constructor(message: string) {
super(message);
this.name = "CommandFailed";
}
}
export class ServiceMissing extends Error {
constructor(serviceName: string) {
super(
`Attempt to find schema for service ${serviceName}, but it does not exist`,
);
this.name = "SchemaMissing";
}
}