Slugify Deep

Text REST API MCP

Slugify text with locale-aware diacritics handling (Turkish, German, French, Spanish) before falling back to Unicode NFD stripping. Produces lowercase, alphanumeric + separator output.

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

View as Markdown

Call it over REST

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

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/slugify-deep/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Güneş"
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/slugify-deep

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
text string yes Text to slugify.
separator string no Separator between words. Default: "-".
max_length integer no Cap output length (breaking at separator). Default: 200.

Example arguments (verified)

{
  "text": "Güneş"
}

Also an MCP tool

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

Connect once

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

More Text tools