Science & Education
Δt = γ·Δτ with γ = 1/√(1−v²/c²): both clock views for any speed below c, from the 0.6c hand-check case to muon lifetimes at 0.998c.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/time-dilation-calculator' \
-H 'Content-Type: application/json' \
-d '{"speedMode":"beta","beta":0.6,"speedMs":0,"intervalMode":"observed","interval":10,"timeUnit":"y"}'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/time-dilation-calculator| Name | Type | Required | Description |
|---|---|---|---|
| speedMode | select | Yes | — |
| beta | number | No | — |
| speedMs | number | No | — |
| intervalMode | select | Yes | — |
| interval | number | Yes | — |
| timeUnit |
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-time-dilation-calculator": {
"name": "time-dilation-calculator",
"description": "Δt = γ·Δτ with γ = 1/√(1−v²/c²): both clock views for any speed below c, from the 0.6c hand-check case to muon lifetimes at 0.998c.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=time-dilation-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": "time-dilation-calculator",
"arguments": {
"speedMode": "beta",
"beta": 0.6,
"speedMs": 0,
"intervalMode": "observed",
"interval": 10,
"timeUnit": "y"
}
}
}Questions or issues? Contact [email protected]
| select |
| Yes |
| — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}