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
# Fields searched - launch_designator, launch_service_provider__name, mission__name, name, pad__location__name, pad__name, rocket__configuration__manufacturer__abbrev, rocket__configuration__manufacturer__name, rocket__configuration__name, rocket__spacecraftflight__spacecraft__name. Codes are the best search terms to use. Single words are the next best alternative when you cannot use a code to search
query SearchUpcomingLaunches($query: String!) {
upcomingLaunches(limit: 20, search: $query){
pageInfo {
count
}
results {
id
name
weatherConcerns
rocket {
id
configuration {
fullName
}
}
mission {
name
description
}
webcastLive
provider {
name
}
}
}
}