crc32
Pack: crc · Endpoint: https://gateway.pipeworx.io/crc/mcp
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 cryptographic.)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
text | string | yes | The text to checksum. |
Example call
curl -X POST https://gateway.pipeworx.io/crc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"crc32","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"crc": {
"url": "https://gateway.pipeworx.io/crc/mcp"
}
}
}
See Getting Started for client-specific install steps.