Astronomy
Compute telescope optics for visual astronomy: magnification, true field of view, focal ratio, exit pupil, limiting magnitude, Dawes/Rayleigh resolution and useful-magnification range. Enter aperture, telescope focal length, an eyepiece focal length and its AFOV (metric mm or imperial inches), pick a target (deep-sky, planetary, lunar or terrestrial), and get a scaled field-of-view overlay plus target-specific advice on exit pupil and framing.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/telescope-field-of-view-calculator' \
-H 'Content-Type: application/json' \
-d '{"aperture":203,"focalLength":2032,"eyepiece":25,"afov":60,"units":"metric","target":"deepsky","distance":0,"showOverlay":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/telescope-field-of-view-calculator| Name | Type | Required | Description |
|---|---|---|---|
| aperture | number | Yes | — |
| focalLength | number | Yes | — |
| eyepiece | number | Yes | — |
| afov | number | Yes | — |
| units | select | No | — |
| target |
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-telescope-field-of-view-calculator": {
"name": "telescope-field-of-view-calculator",
"description": "Compute telescope optics for visual astronomy: magnification, true field of view, focal ratio, exit pupil, limiting magnitude, Dawes/Rayleigh resolution and useful-magnification range. Enter aperture, telescope focal length, an eyepiece focal length and its AFOV (metric mm or imperial inches), pick a target (deep-sky, planetary, lunar or terrestrial), and get a scaled field-of-view overlay plus target-specific advice on exit pupil and framing.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=telescope-field-of-view-calculator",
"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": "telescope-field-of-view-calculator",
"arguments": {
"aperture": 203,
"focalLength": 2032,
"eyepiece": 25,
"afov": 60,
"units": "metric",
"target": "deepsky",
"distance": 0,
"showOverlay": true
}
}
}| select |
| No |
| — |
| distance | number | No | — |
| showOverlay | checkbox | No | — |
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]