base64_encode

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

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

Parameters

NameTypeRequiredDescription
textstringyesText to encode.

Example call

Arguments

{
  "text": "Hello, World!"
}

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_encode","arguments":{"text":"Hello, World!"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('base64_encode', {
  "text": "Hello, World!"
});

More examples

{
  "text": "Sensitive information",
  "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