We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apollographql/apollo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
query ExploreCelestialBodies($search: String, $limit: Int = 10, $offset: Int = 0) {
celestialBodies(search: $search, limit: $limit, offset: $offset) {
pageInfo {
count
next
previous
}
results {
id
name
# Physical characteristics
diameter # in kilometers
mass # in kilograms
gravity # in m/s²
lengthOfDay
atmosphere
# Classification
type {
id
name
}
# Visual and descriptive content
image {
url
thumbnail
credit
}
description
wikiUrl
}
}
}