We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sam-artuso/demo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { ApiProperty } from '@nestjs/swagger'
export class RegionsResponseDto {
@ApiProperty({
description: 'List of available timezone regions (e.g., America, Europe, Asia)',
example: [
'Africa',
'America',
'Antarctica',
'Asia',
'Atlantic',
'Australia',
'Europe',
'Indian',
'Pacific',
],
type: [String],
})
regions!: string[]
@ApiProperty({
description: 'Total number of regions',
example: 15,
type: Number,
})
count!: number
}