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
api.graphql•1.26 kB
"""A weather alert"""
type Alert {
"""The severity of this alert"""
severity: String
"""A description of the alert"""
description: String
"""Information about how people should respond to the alert"""
instruction: String
}
"""A coordinate, consisting of a latitude and longitude"""
type Coordinate {
"""The latitude of this coordinate"""
latitude: String!
"""The longitude of this coordinate"""
longitude: String!
}
"""A weather forecast"""
type Forecast {
"""The coordinate associated with this forecast"""
coordinate: Coordinate!
"""
The National Weather Service (NWS) URL where the forecast data can be read
"""
forecastURL: String!
"""A detailed weather forecast from the National Weather Service (NWS)"""
detailed: String!
}
"""A coordinate, consisting of a latitude and longitude"""
input InputCoordinate {
"""The latitude of this coordinate"""
latitude: String!
"""The longitude of this coordinate"""
longitude: String!
}
type Query {
"""Get the weather forecast for a coordinate"""
forecast(coordinate: InputCoordinate!): Forecast
"""
Get the weather alerts for a state
"""
alerts(
"""The two-letter state abbreviation (e.g., 'CO' for Colorado)"""
state: String!
): [Alert]
}