Development
Decode an NTP/SNTP 48-byte packet: LI/VN/Mode bitfield, stratum, poll, precision, root delay/dispersion, reference ID (with clock & kiss codes), and four 64-bit 1900-epoch timestamps
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ntp-rfc-5905-sntp-leap-second-epoch-decoder' \
-H 'Content-Type: application/json' \
-d '{"hex":"24 01 0c fa 000005e4 0000059c 47505300 eb5c3a80 00000000 eb5c3a90 00000000 eb5c3aa0 00000000 eb5c3ab0 00000000","mode":"decode"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/ntp-rfc-5905-sntp-leap-second-epoch-decoder| Name | Type | Required | Description |
|---|---|---|---|
| hex | textarea | No | — |
| mode | select | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}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-ntp-rfc-5905-sntp-leap-second-epoch-decoder": {
"name": "ntp-rfc-5905-sntp-leap-second-epoch-decoder",
"description": "Decode an NTP/SNTP 48-byte packet: LI/VN/Mode bitfield, stratum, poll, precision, root delay/dispersion, reference ID (with clock & kiss codes), and four 64-bit 1900-epoch timestamps",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ntp-rfc-5905-sntp-leap-second-epoch-decoder",
"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": "ntp-rfc-5905-sntp-leap-second-epoch-decoder",
"arguments": {
"hex": "24 01 0c fa 000005e4 0000059c 47505300 eb5c3a80 00000000 eb5c3a90 00000000 eb5c3aa0 00000000 eb5c3ab0 00000000",
"mode": "decode"
}
}
}Questions or issues? Contact [email protected]