We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fist-maestro/mcp-servers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// 定义问候语相关的常量和类型
export const DEFAULT_GREETING = 'World';
export interface GreetingResponse {
message: string;
}
export interface GreetingRequest {
name?: string;
}
// 错误消息常量
export const ERROR_MESSAGES = {
INVALID_NAME: 'Name must be a non-empty string',
INTERNAL_ERROR: 'Internal server error occurred'
};