Astronomy
Convert astronomical positions between equatorial (RA/Dec J2000 and B1950), galactic (l/b), and supergalactic (SGL/SGB) coordinate systems. Accurate J2000 IAU 1958 galactic rotation, de Vaucouleurs supergalactic system, and IAU 1976 precession between epochs. Accepts sexagesimal (12h51m26s) or decimal-degree input and shows all four systems for each object.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/galactic-coordinate-converter' \
-H 'Content-Type: application/json' \
-d '{"coords":"05 34 31.94 +22 00 52.2","fromSystem":"eqJ2000","toSystem":"galactic","outputFormat":"both","precision":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/galactic-coordinate-converter| Name | Type | Required | Description |
|---|---|---|---|
| coords | textarea | Yes | One coordinate per line. For equatorial: RA then Dec. For galactic/supergalactic: longitude then latitude (degrees). |
| fromSystem | select | No | — |
| toSystem | select | No | — |
| outputFormat | select | No | — |
| precision | number | Yes | Number of decimal places for decimal-degree output. |
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-galactic-coordinate-converter": {
"name": "galactic-coordinate-converter",
"description": "Convert astronomical positions between equatorial (RA/Dec J2000 and B1950), galactic (l/b), and supergalactic (SGL/SGB) coordinate systems. Accurate J2000 IAU 1958 galactic rotation, de Vaucouleurs supergalactic system, and IAU 1976 precession between epochs. Accepts sexagesimal (12h51m26s) or decimal-degree input and shows all four systems for each object.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=galactic-coordinate-converter",
"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": "galactic-coordinate-converter",
"arguments": {
"coords": "05 34 31.94 +22 00 52.2",
"fromSystem": "eqJ2000",
"toSystem": "galactic",
"outputFormat": "both",
"precision": 4
}
}
}HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]