uphere-space1

uphere-space1

3.5

The uphere-space1 MCP server provides real-time tracking and predictions of thousands of satellites, offering valuable insights into the positions and movements of objects in orbit.

The uphere-space1 MCP server is designed to facilitate users with access to current and historical data regarding satellites in orbit. Our server is a freemium service with a high popularity rating and excellent service level. While using the free tier, please note that requests are limited to 1 per second.

Features

  • Real-Time Satellite Tracking: Access current positions and detailed information for over 3,000 satellites.
  • Configurable Orbital Tracks: Customize and retrieve the orbital track for any object.
  • Comprehensive Database: Includes data on countries and organizations with satellites in orbit.

MCP Tools

  • Orbit: Retrieve the orbital track of a satellite for a specified period.
  • Launch Sites: Access information about launch sites around the world.
  • Location: Obtain the current location of a satellite using its NORAD TLE number.
  • Popular Satellites: Discover the most popular satellites over a specified number of days.
  • Visible Satellites: Identify satellites visible from a specific latitude and longitude.
  • Details: Get detailed information about a satellite using its NORAD TLE number.
  • Categories: Explore categories used to filter satellites.
  • Countries: Find out which countries have launched satellites that are currently or have been in orbit.
  • Satellite List: Access a list of all satellites in orbit, with options to filter by text or country.

Usage with Different Platforms

python

python
import requests

url = 'https://uphere-space1.com/api/satellite'
params = {'norad_id': '25544'}
response = requests.get(url, params=params)
print(response.json())

javascript

javascript
fetch('https://uphere-space1.com/api/satellite?norad_id=25544')
  .then(response => response.json())
  .then(data => console.log(data));