base64_decode
Decode base64 encoded text into readable format using this tool from Crypto_MCP, simplifying data conversion for secure handling.
Instructions
decode base64 to text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | base64 text to decode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "base64 text to decode",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}