encodeBase64
Convert text or data into Base64 format using this tool in the mcp-helper-tools server. Ideal for encoding inputs securely and efficiently.
Instructions
Encode input data to Base64
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | Data to encode |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "Data to encode",
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}