Random String

Security REST API MCP

Generate cryptographically-random strings from a chosen charset.

This page documents the HTTP endpoint POST /api/tools/random-string/execute. See the MCP reference →

View as Markdown

Call it over REST

POST https://api.findutils.com/api/tools/random-string/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/random-string/execute \
  -H "Content-Type: application/json" \
  -d '{
    "length": 8
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/random-string

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
length integer no Characters per string (1-1000). Default: 12.
count integer no How many strings to generate (1-100). Default: 1.
charset string (alphanumeric | alphabetic | numeric | hex | custom) no Character pool. Defaults to alphanumeric. Default: "alphanumeric".
custom string no Custom charset string, used when charset="custom".

Example arguments (verified)

{
  "length": 8
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:random_string after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Random String →

More Security tools