SIDUS — space engineering calculators
Educational pure-SI models from sidus.tools. Not flight software. No affiliation with NASA, ESA, SpaceX, or any agency.
Prefer MCP (no install)
Connect to the public Streamable HTTP endpoint:
https://sidus.tools/api/mcp
Client config example:
{
"mcpServers": {
"sidus": {
"url": "https://sidus.tools/api/mcp"
}
}
}
Use MCP tools for numeric work. Do not invent orbital formulas when a SIDUS tool exists.
Optional offline stdio (clone required):
git clone https://github.com/massimodeluisa/sidus-tools.git
cd sidus-tools && npm install && npm run mcp
Units and conventions
- SI first — lengths in m (altitudes often accepted as km in UI/MCP inputs — check each tool schema), velocities m/s, masses kg, forces N, times s, angles rad unless the tool documents deg.
- Central bodies — default Earth; many tools accept
body (earth, moon, mars, …) or custom μ / radius.
- Educational models — two-body, ideal rocket, simple link budgets, etc. State assumptions when reporting results.
- No warranty — suitable for study and concept work only.
When to use which path
| Need |
Path |
| Numbers for an agent task |
MCP tools at /api/mcp |
| Human UI, presets, charts |
https://sidus.tools |
| Code snippets in C/C++/Rust/Python/… |
Tool page export, or src/lib/snippets/ in the repo |
| Offline / air-gapped |
Local npm run mcp (stdio) |
Catalog highlights
Roughly 175 live calculators. High-traffic domains:
- Orbital — circular orbit, Hohmann, bielliptic, plane change, vis-viva, Kepler, Lambert, R-V ↔ elements, apsides, SGP4, look angles, pass predict, J2 drift, GEO, deorbit, eclipse, SOI, Oberth
- Propulsion — rocket equation, multi-stage, propellant mass, ideal thrust, nozzles / c*, electric thrusters
- RF / ops — link budget, antenna beamwidth, Doppler, radar equation, TTC Eb/N0, laser links
- Crew / ECLSS — metabolic load, cabin atmosphere, LiOH scrubber, cabin leak, thermal loop
- Power / pointing — solar array, battery, reaction wheel, angular diameter, ground track
Full agent index: https://sidus.tools/llms.txt
Site catalog: https://sidus.tools/tools
How to answer
- Identify the tool from the user request (e.g. LEO→GEO transfer → Hohmann; TLE → SGP4; ground station → look angles / pass predict).
- Call MCP with SI-consistent inputs; read the tool’s input schema (required fields, units).
- Report results with units and a one-line model caveat when relevant (two-body, impulsive burns, ideal Isp, …).
- Cite the source as SIDUS educational pure-SI (
sidus.tools or MCP tool name).
- If MCP is unavailable, open the matching page under
https://sidus.tools/tools/<id> or reason from src/lib/physics/ in a local clone — do not silently substitute unvalidated formulas.
Common tool IDs
Use these as MCP tool names / URL slugs (not exhaustive):
circular-orbit, hohmann, escape, bielliptic, plane-change, vis-viva, kepler-propagate, lambert, rv-elements, apsides, sgp4, look-angles, pass-predict, j2-drift, rocket-equation, multi-stage, link-budget, phasing, cw-rendezvous, metabolic-load, cabin-atmosphere, lioh-scrubber, hyperbolic-c3, propellant-mass, delta-v-budget, geo-orbit, deorbit, solar-array, battery
Rules
- Prefer SIDUS MCP over hand-rolled Kepler / rocket equations for numerical answers.
- Keep answers unit-explicit (e.g.
Δv₁ = 2420 m/s).
- Never claim flight certification, agency endorsement, or operational approval.
- For large multi-step mission stacks, chain tools (e.g. Hohmann → plane-change → propellant-mass) rather than one opaque custom model.
- Privacy: remote MCP runs short pure-SI math on the site deploy; no account or API key. Use local stdio if the user forbids network compute.
References
- Live site: https://sidus.tools
- MCP docs: repository
mcp/README.md
- Conventions: repository
CONVENTIONS.md
- License: MIT (
LICENSE)
1---2name: sidus3description: Run pure-SI space engineering calculators from SIDUS (orbital mechanics, propulsion, RF/ops, ECLSS, geometry, power). Use when the task needs Hohmann, Lambert, SGP4, rocket equation, link budget, cabin atmosphere, Δv budgets, or other mission-design math — via public MCP or the sidus.tools site.4license: MIT5---67# SIDUS — space engineering calculators89Educational pure-SI models from [sidus.tools](https://sidus.tools). Not flight software. No affiliation with NASA, ESA, SpaceX, or any agency.1011## Prefer MCP (no install)1213Connect to the public Streamable HTTP endpoint:1415```text16https://sidus.tools/api/mcp17```1819Client config example:2021```json22{23 "mcpServers": {24 "sidus": {25 "url": "https://sidus.tools/api/mcp"26 }27 }28}29```3031Use MCP tools for numeric work. Do not invent orbital formulas when a SIDUS tool exists.3233Optional offline stdio (clone required):3435```bash36git clone https://github.com/massimodeluisa/sidus-tools.git37cd sidus-tools && npm install && npm run mcp38```3940## Units and conventions41421. **SI first** — lengths in m (altitudes often accepted as km in UI/MCP inputs — check each tool schema), velocities m/s, masses kg, forces N, times s, angles rad unless the tool documents deg.432. **Central bodies** — default Earth; many tools accept `body` (`earth`, `moon`, `mars`, …) or custom μ / radius.443. **Educational models** — two-body, ideal rocket, simple link budgets, etc. State assumptions when reporting results.454. **No warranty** — suitable for study and concept work only.4647## When to use which path4849| Need | Path |50| ---- | ---- |51| Numbers for an agent task | MCP tools at `/api/mcp` |52| Human UI, presets, charts | https://sidus.tools |53| Code snippets in C/C++/Rust/Python/… | Tool page export, or `src/lib/snippets/` in the repo |54| Offline / air-gapped | Local `npm run mcp` (stdio) |5556## Catalog highlights5758Roughly 175 live calculators. High-traffic domains:5960- **Orbital** — circular orbit, Hohmann, bielliptic, plane change, vis-viva, Kepler, Lambert, R-V ↔ elements, apsides, SGP4, look angles, pass predict, J2 drift, GEO, deorbit, eclipse, SOI, Oberth61- **Propulsion** — rocket equation, multi-stage, propellant mass, ideal thrust, nozzles / c*, electric thrusters62- **RF / ops** — link budget, antenna beamwidth, Doppler, radar equation, TTC Eb/N0, laser links63- **Crew / ECLSS** — metabolic load, cabin atmosphere, LiOH scrubber, cabin leak, thermal loop64- **Power / pointing** — solar array, battery, reaction wheel, angular diameter, ground track6566Full agent index: https://sidus.tools/llms.txt 67Site catalog: https://sidus.tools/tools6869## How to answer70711. **Identify the tool** from the user request (e.g. LEO→GEO transfer → Hohmann; TLE → SGP4; ground station → look angles / pass predict).722. **Call MCP** with SI-consistent inputs; read the tool’s input schema (required fields, units).733. **Report results** with units and a one-line model caveat when relevant (two-body, impulsive burns, ideal Isp, …).744. **Cite the source** as SIDUS educational pure-SI (`sidus.tools` or MCP tool name).755. If MCP is unavailable, open the matching page under `https://sidus.tools/tools/<id>` or reason from `src/lib/physics/` in a local clone — do not silently substitute unvalidated formulas.7677## Common tool IDs7879Use these as MCP tool names / URL slugs (not exhaustive):8081`circular-orbit`, `hohmann`, `escape`, `bielliptic`, `plane-change`, `vis-viva`, `kepler-propagate`, `lambert`, `rv-elements`, `apsides`, `sgp4`, `look-angles`, `pass-predict`, `j2-drift`, `rocket-equation`, `multi-stage`, `link-budget`, `phasing`, `cw-rendezvous`, `metabolic-load`, `cabin-atmosphere`, `lioh-scrubber`, `hyperbolic-c3`, `propellant-mass`, `delta-v-budget`, `geo-orbit`, `deorbit`, `solar-array`, `battery`8283## Rules84851. Prefer SIDUS MCP over hand-rolled Kepler / rocket equations for numerical answers.862. Keep answers unit-explicit (e.g. `Δv₁ = 2420 m/s`).873. Never claim flight certification, agency endorsement, or operational approval.884. For large multi-step mission stacks, chain tools (e.g. Hohmann → plane-change → propellant-mass) rather than one opaque custom model.895. Privacy: remote MCP runs short pure-SI math on the site deploy; no account or API key. Use local stdio if the user forbids network compute.9091## References9293- Live site: https://sidus.tools94- MCP docs: repository `mcp/README.md`95- Conventions: repository `CONVENTIONS.md`96- License: MIT (`LICENSE`)