Geography
Estimate spring/neap tide forcing and lunar-distance amplification with a transparent offline planning model.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/tide-and-lunar-distance-predictor' \
-H 'Content-Type: application/json' \
-d '{"moonAgeDays":0.2,"lunarDistanceKm":363300,"declinationDeg":5,"baselineRange":1}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/tide-and-lunar-distance-predictor| Name | Type | Required | Description |
|---|---|---|---|
| moonAgeDays | number | Yes | 0 = new moon; about 14.77 = full moon. |
| lunarDistanceKm | number | Yes | Perigee is about 363,300 km; apogee is about 405,500 km. |
| declinationDeg | number | Yes | Use a signed value; the absolute value affects this simplified model. |
| baselineRange | number | Yes | Typical local range used only to express the result in metres. |
HTML result
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-tide-and-lunar-distance-predictor": {
"name": "tide-and-lunar-distance-predictor",
"description": "Estimate spring/neap tide forcing and lunar-distance amplification with a transparent offline planning model.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=tide-and-lunar-distance-predictor",
"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": "tide-and-lunar-distance-predictor",
"arguments": {
"moonAgeDays": 0.2,
"lunarDistanceKm": 363300,
"declinationDeg": 5,
"baselineRange": 1
}
}
}Questions or issues? Contact [email protected]
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}