Hmac Generate

Encoding REST API MCP

Compute an HMAC of a message with a secret key. Returns hex digest.

This page documents the HTTP endpoint POST /api/tools/hmac-generate/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/hmac-generate/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/hmac-generate/execute \
  -H "Content-Type: application/json" \
  -d '{
    "message": "hi",
    "secret": "k",
    "algorithm": "SHA-256"
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/hmac-generate

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
message string yes The message to authenticate.
secret string yes The secret key.
algorithm string (SHA-256 | SHA-512) no HMAC algorithm. Defaults to SHA-256. Default: "SHA-256".

Example arguments (verified)

{
  "message": "hi",
  "secret": "k",
  "algorithm": "SHA-256"
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:hmac_generate after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Hmac Generate →

More Encoding tools