hmac
Pack: hash · Endpoint: https://gateway.pipeworx.io/hash/mcp
Compute an HMAC (hex) of text with a secret key. algorithm = sha1, sha256 (default), sha384, or sha512. Keyless/offline.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
text | string | yes | The message to authenticate. |
key | string | yes | The secret key. |
algorithm | string | no | sha1 | sha256 (default) | sha384 | sha512. |
Example call
curl -X POST https://gateway.pipeworx.io/hash/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hmac","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hash": {
"url": "https://gateway.pipeworx.io/hash/mcp"
}
}
}
See Getting Started for client-specific install steps.