Science
Propagate a spacecraft/satellite state vector (r₀, v₀) to time t₀+Δt under two-body gravity via the universal-variable (f-and-g) method, and derive the classical orbital elements
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/two-body-state-vector-propagator' \
-H 'Content-Type: application/json' \
-d '{"centralBody":"earth","customMu":0,"distUnit":"km","r0":"7000,0,0","v0":"0,7546,0","dt":3600}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/two-body-state-vector-propagator| Name | Type | Required | Description |
|---|---|---|---|
| centralBody | select | No | — |
| customMu | number | No | — |
| distUnit | select | No | — |
| r0 | text | Yes | — |
| v0 | text | Yes | — |
| dt |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-two-body-state-vector-propagator": {
"name": "two-body-state-vector-propagator",
"description": "Propagate a spacecraft/satellite state vector (r₀, v₀) to time t₀+Δt under two-body gravity via the universal-variable (f-and-g) method, and derive the classical orbital elements",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=two-body-state-vector-propagator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "two-body-state-vector-propagator",
"arguments": {
"centralBody": "earth",
"customMu": 0,
"distUnit": "km",
"r0": "7000,0,0",
"v0": "0,7546,0",
"dt": 3600
}
}
}Questions or issues? Contact [email protected]
| number |
| Yes |
| — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}