Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

SpaceX Server

БесплатноНе проверен

A lightweight MCP server that provides analytics on SpaceX launches, including launch counts per year, success vs failure totals, and most-used launch site.

GitHubEmbed

Описание

A lightweight MCP server that provides analytics on SpaceX launches, including launch counts per year, success vs failure totals, and most-used launch site.

README

A lightweight Model Context Protocol (MCP) server that fetches public SpaceX launch data and exposes three analytics endpoints.

analysisType value What it returns
countByYear Launch counts for every year from the first SpaceX flight to the most recent.
successVsFailure Total number of successful vs. failed launches.
mostFrequentSite Launch site used most often and its count.

📂 Project Structure

spacex-mcp-server/
├── analysis.py
├── launch_data.py
├── main.py
├── requirements.txt
└── README.md

⚡ Quick Start

git clone https://github.com/nawani-rohit/MCP-Server.git
cd spacex-mcp-server

pip install -r requirements.txt
uvicorn main:app --reload --port 3000

🎯 API Endpoints

Method Path Query Parameter Description
GET /mcp/launches/analysis analysisType=countByYear Launch counts per year
analysisType=successVsFailure Success vs failure totals
analysisType=mostFrequentSite Most-used launch site

🧪 Requests & Responses

Replace 3000 if you run on a different port.

1️⃣ Launch Count by Year

curl "http://localhost:3000/mcp/launches/analysis?analysisType=countByYear"
{
  "2006": 1,
  "2007": 1,
  "2008": 2,
  "2009": 1,
  "2010": 2,
  "2011": 0,
  "2012": 2,
  "2013": 3,
  "2014": 6,
  "2015": 7,
  "2016": 9,
  "2017": 18,
  "2018": 21,
  "2019": 13,
  "2020": 25
}

2️⃣ Successful vs Failed Launches

curl "http://localhost:3000/mcp/launches/analysis?analysisType=successVsFailure"
{
  "successful_launches": 191,
  "failed_launches": 9
}

3️⃣ Most Frequent Launch Site

curl "http://localhost:3000/mcp/launches/analysis?analysisType=mostFrequentSite"
{
  "site": "CCAFS SLC 40",
  "launch_count": 52
}

from github.com/nawani-rohit/MCP-Server

Установка SpaceX Server

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/nawani-rohit/MCP-Server

FAQ

SpaceX Server MCP бесплатный?

Да, SpaceX Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для SpaceX Server?

Нет, SpaceX Server работает без API-ключей и переменных окружения.

SpaceX Server — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить SpaceX Server в Claude Desktop, Claude Code или Cursor?

Открой SpaceX Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare SpaceX Server with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development