# binary-encoding

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add bytepack/binary-encoding

# Browse available tools
npx -y smithery tool list bytepack/binary-encoding

# Get full schema for a tool
npx -y smithery tool get bytepack/binary-encoding encode_binary

# Call a tool
npx -y smithery tool call bytepack/binary-encoding encode_binary '{}'
```

## Direct MCP Connection

Endpoint: `https://binary-encoding--bytepack.run.tools`

## Tools (2)

- `encode_binary` — Encode structured data into fixed-size 2556-byte binary. Input: JSON object with fields like action, domain, confidence…
- `decode_binary` — Decode fixed-size binary message back to structured data.

```bash
# Get full input/output schema for a tool
npx -y smithery tool get bytepack/binary-encoding <tool-name>
```
