Encoding suite
Encode text in all common formats at once — Base64, hex, and URL encoding in one pass.
When to use this pack
An agent preparing data for different transport layers needs multiple encodings: Base64 for binary-in-text, hex for debugging and low-level protocols, URL encoding for query parameters. One payment produces all three.
Tools in this pack
-
Base64
$0.001
POST /api/base64
Base64 encode or decode text. mode: encode (default) or decode. Handles URL-safe base64 on decode.
-
Hex
$0.001
POST /api/hex
Hex encode or decode text. mode: encode (default) or decode.
-
URL encode/decode
$0.001
POST /api/url-code
Percent-encode or decode a string for URLs. mode: encode (default) or decode. component: true (default) uses encodeURIComponent semantics.
Workflow
- Call base64 with text and mode='encode' for Base64 representation.
- Call hex with text and mode='encode' for hexadecimal representation.
- Call url-code with text and mode='encode' for URL-encoded representation.
Run it in Claude
claude mcp add agent402 -s user -- npx -y agent402-mcp@latest
Then paste this prompt into Claude:
Encode 'hello world' using Agent402's encoding-suite skill pack: (1) Base64, (2) hex, (3) URL encoding. Return all three encoded forms.
← All skill packs