# Base64 Encoder/Decoder — Standard & URL-Safe

Base64 encoding/decoding API for AI agents. Encode text to base64 or decode base64 to text. Supports standard and URL-safe variants with metadata (input length, output length, encoding type).

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add axel-belfort/base64-codec

# Browse available tools
npx -y @smithery/cli@latest tool list axel-belfort/base64-codec

# Get full schema for a tool
npx -y @smithery/cli@latest tool get axel-belfort/base64-codec utility_encode_base64

# Call a tool
npx -y @smithery/cli@latest tool call axel-belfort/base64-codec utility_encode_base64 '{}'
```

## Direct MCP Connection

Endpoint: `https://base64-codec--axel-belfort.run.tools`

## Tools (1)

- `utility_encode_base64` — Use this when you need to encode text to base64 or decode base64 back to plaintext. Returns the result string with enco…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get axel-belfort/base64-codec <tool-name>
```
