hex_decode
Decode hexadecimal strings into readable text using this tool as part of the Crypto_MCP server, designed for secure data conversion in encryption workflows.
Instructions
decode hex to text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | hex to decode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "hex to decode",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}