Checksums (CRC-32 / Adler-32)

live Utility

Compute CRC-32 (IEEE, zip/gzip/PNG) and Adler-32 (zlib) checksums of text. Error-detection checksums, not cryptographic. Keyless, offline.

2 tools
0ms auth
free tier 50 calls/day

Tools

crc32

Compute the CRC-32 (IEEE) checksum of UTF-8 text — the algorithm used by zip/gzip/PNG. Returns the unsigned 32-bit value and its hex form. Keyless, offline. (Error-detection checksum, not cryptographi

No parameters required.

Try it
adler32

Compute the Adler-32 checksum of UTF-8 text (as used by zlib). Returns the unsigned value and hex. Keyless, offline.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/crc/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/crc/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"crc32","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("crc32", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("compute crc-32 (ieee, zip/gzip/png) and adler-32 (zlib) checksums of text");