Text Encryption

Security REST API MCP

Encrypt text with a password using AES-256-GCM (key derived with PBKDF2-SHA256, 100000 iterations) and return a base64 ciphertext, or decrypt such a ciphertext back to the original text. The base64 blob is salt(16) + iv(12) + ciphertext, compatible with the FindUtils Text Encryption page.

This page documents the MCP tool findutils:text_encryption. See the REST reference →

Call it over MCP

Tool name findutils:text_encryption · no API keys · 120 requests/min per IP

Claude Code

claude mcp add findutils --transport http https://mcp.findutils.com/

Claude Desktop — claude_desktop_config.json

{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "text_encryption",
      "arguments": {
        "text": "hello",
        "password": "hunter2",
        "mode": "encrypt"
      }
    }
  }'

Input schema

Argument Type Required Description
text string yes encrypt: the plaintext. decrypt: the base64 ciphertext produced by this tool.
password string yes The password (passphrase) used to derive the AES key.
mode string (encrypt | decrypt) no Operation. Default: encrypt. Default: "encrypt".

Example arguments (verified)

{
  "text": "hello",
  "password": "hunter2",
  "mode": "encrypt"
}

Also a REST endpoint

The same tool answers plain HTTP at POST /api/tools/text-encryption/execute — no key, 60 requests/min.

Open the REST reference for Text Encryption →

More Security tools