base64_decode

Pack: base64 · Endpoint: https://gateway.pipeworx.io/base64/mcp

Decode Base64 / Base64URL / Base32 / Hex back to UTF-8 text (keyless, offline). Set variant (default base64).

Parameters

NameTypeRequiredDescription
datastringyesEncoded data to decode.

Example call

Arguments

{
  "data": "SGVsbG8sIFdvcmxkIQ=="
}

curl

curl -X POST https://gateway.pipeworx.io/base64/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"base64_decode","arguments":{"data":"SGVsbG8sIFdvcmxkIQ=="}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('base64_decode', {
  "data": "SGVsbG8sIFdvcmxkIQ=="
});

More examples

{
  "data": "U2Vuc2l0aXZlIGluZm9ybWF0aW9u",
  "variant": "base64url"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "base64": {
      "url": "https://gateway.pipeworx.io/base64/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026