Toolkit MCP Server
by cyanheads
Verified
hashData
Hash input data using Node.js crypto module
Input Schema
Name | Required | Description | Default |
---|---|---|---|
algorithm | No | Hash algorithm to use | sha256 |
encoding | No | Output encoding | hex |
input | Yes | Data to hash |
Input Schema (JSON Schema)
{
"properties": {
"algorithm": {
"default": "sha256",
"description": "Hash algorithm to use",
"enum": [
"md5",
"sha1",
"sha256",
"sha512"
],
"type": "string"
},
"encoding": {
"default": "hex",
"description": "Output encoding",
"enum": [
"hex",
"base64"
],
"type": "string"
},
"input": {
"description": "Data to hash",
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}