Skip to main content
Glama

mcp-github-project-manager

export class ValidationError extends Error { constructor( message: string, public readonly details?: Record<string, unknown> ) { super(message); this.name = "ValidationError"; } } export class NotFoundError extends Error { constructor( message: string, public readonly resource?: string ) { super(message); this.name = "NotFoundError"; } } export class UnauthorizedError extends Error { constructor( message: string, public readonly details?: Record<string, unknown> ) { super(message); this.name = "UnauthorizedError"; } } export class RateLimitError extends Error { constructor( message: string, public readonly limits?: { limit: string | undefined; remaining: string | undefined; reset: string | undefined; } ) { super(message); this.name = "RateLimitError"; } } export class InternalError extends Error { constructor( message: string, public readonly details?: Record<string, unknown> ) { super(message); this.name = "InternalError"; } }

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/kunwarVivek/mcp-github-project-manager'

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