hex_encode
Convert text into hexadecimal format for secure data handling and compatibility with cryptographic processes in the Crypto_MCP server.
Instructions
encode text to hex
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | text to encode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "text to encode",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}