Format Conversion
Encode or decode bytes with ZeroMQ Z85, RFC 1924 Base85 or a validated custom alphabet in single or line-batch mode
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/z85-rfc1924-base85-stream-codec' \
-H 'Content-Type: application/json' \
-d '{"input":"00010203","operation":"encode","variant":"z85","inputEncoding":"hex","outputEncoding":"utf8","batchMode":"single","customAlphabet":"","strictBlockLength":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/z85-rfc1924-base85-stream-codec| Name | Type | Required | Description |
|---|---|---|---|
| input | textarea | Yes | — |
| operation | select | No | — |
| variant | select | No | — |
| inputEncoding | select | No | — |
| outputEncoding | select | No | — |
| batchMode |
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-z85-rfc1924-base85-stream-codec": {
"name": "z85-rfc1924-base85-stream-codec",
"description": "Encode or decode bytes with ZeroMQ Z85, RFC 1924 Base85 or a validated custom alphabet in single or line-batch mode",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=z85-rfc1924-base85-stream-codec",
"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": "z85-rfc1924-base85-stream-codec",
"arguments": {
"input": "00010203",
"operation": "encode",
"variant": "z85",
"inputEncoding": "hex",
"outputEncoding": "utf8",
"batchMode": "single",
"customAlphabet": "",
"strictBlockLength": true
}
}
}Questions or issues? Contact [email protected]
| select |
| No |
| — |
| customAlphabet | textarea | No | — |
| strictBlockLength | checkbox | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}