case_converter
verifiedv0.1Converts text case only: upper, lower, title, or camel. mode must be passed explicitly (default upper) — there is no Variant URL that implies a mode. Use this when the letters should change case and the words should stay. Do not use it to produce a URL slug (that is slug_generator) or to clean whitespace, HTML, or duplicate lines (that is text_cleaner).
Updated 9/3/2026 · Created 9/3/2026
Input Schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"text"
],
"properties": {
"mode": {
"enum": [
"upper",
"lower",
"title",
"camel"
],
"type": "string",
"default": "upper"
},
"text": {
"type": "string",
"maxLength": 100000,
"minLength": 1
}
},
"additionalProperties": false
}Full Contract
{
"name": "case_converter",
"description": "Converts text case only: upper, lower, title, or camel. mode must be passed explicitly (default upper) — there is no Variant URL that implies a mode. Use this when the letters should change case and the words should stay. Do not use it to produce a URL slug (that is slug_generator) or to clean whitespace, HTML, or duplicate lines (that is text_cleaner).",
"inputSchema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"text"
],
"properties": {
"mode": {
"enum": [
"upper",
"lower",
"title",
"camel"
],
"type": "string",
"default": "upper"
},
"text": {
"type": "string",
"maxLength": 100000,
"minLength": 1
}
},
"additionalProperties": false
}
}GET /api/tool/simpletoolstack.com/case_converter