Network
Convert integers (128-bit) to IPv6 addresses. Supports batch conversion.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/integer-to-ipv6' \
-H 'Content-Type: application/json' \
-d '{"integerInput":"Enter integers to convert, one per line:\n42540766411282592856906245548098263284\n1\n42540766411282592856903984951653826561\n\nSupports decimal or hexadecimal (0x prefix):\n0x20010db885a3000000008a2e03707334","format":"compressed","addLineNumbers":false,"showSourceData":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/integer-to-ipv6| Name | Type | Required | Description |
|---|---|---|---|
| integerInput | textarea | Yes | — |
| format | select | Yes | — |
| addLineNumbers | checkbox | No | Number each conversion result |
| showSourceData | checkbox | No | Display original integer values in results |
Text result
{
"result": "Processed text content",
"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-integer-to-ipv6": {
"name": "integer-to-ipv6",
"description": "Convert integers (128-bit) to IPv6 addresses. Supports batch conversion.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=integer-to-ipv6",
"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": "integer-to-ipv6",
"arguments": {
"integerInput": "Enter integers to convert, one per line:\n42540766411282592856906245548098263284\n1\n42540766411282592856903984951653826561\n\nSupports decimal or hexadecimal (0x prefix):\n0x20010db885a3000000008a2e03707334",
"format": "compressed",
"addLineNumbers": false,
"showSourceData": false
}
}
}Questions or issues? Contact [email protected]