Satellite Tracker
Track 15,000+ satellites in real-time
Track satellites in real-time with orbital data and approximate positions. Military, GPS, Starlink, weather, space stations, and 30+ groups. Search by name, track by NORAD ID, browse groups, and see recent launches.
List all available satellite groups — military, GPS, Starlink, weather, space stations, communications, science, and more. Returns group IDs to use with track_group.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-tracker",
"skill": "list_groups",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callGet all satellites in a group with orbital data and current approximate positions. Groups include military, gps-ops, starlink, weather, stations, geo, and 25+ more. Use list_groups to see all options.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-tracker",
"skill": "track_group",
"input": {
"group": "military"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch for satellites by name. Partial matches supported — searching "STARLINK" returns thousands, "ISS" returns the space station, "GPS" returns navigation satellites. Returns orbital data and NORAD IDs.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-tracker",
"skill": "search_satellites",
"input": {
"query": "ISS"
}
}' \
https://api.toolrouter.com/v1/tools/callGet detailed information about a specific satellite by NORAD catalog number. Returns full orbital parameters, current approximate position, orbit classification, drag coefficient, and data age. Use search_satellites to find the NORAD ID first.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-tracker",
"skill": "satellite_info",
"input": {
"norad_id": 25544
}
}' \
https://api.toolrouter.com/v1/tools/callGet satellites launched in the last 30 days. Shows the newest objects in orbit, sorted by launch date. Useful for tracking new deployments, Starlink batches, and military launches.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-tracker",
"skill": "recent_launches",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"satellite-tracker","skill":"list_groups","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can I browse satellite groups before I search a specific craft?
Yes. `list_groups` shows the available groups, and `track_group` returns all satellites in one group such as Starlink, GPS, weather, or stations.
Can I search by satellite name?
`search_satellites` supports partial matches, so names like ISS, STARLINK, GPS, or COSMOS work well.
What does satellite_info add?
`satellite_info` gives the NORAD-based orbital parameters, approximate position, orbit classification, drag coefficient, and data age for one satellite.
Can I see recent launches?
`recent_launches` lists satellites launched in the last 30 days, sorted by launch date.