Converts any text string to lowercase letters using Unicode-compliant transformation rules. Access via MCP in Cursor or Windsurf for instant case conversion, or call GET /v1/case/lower with your text. Perfect for normalizing user input, creating URL slugs, or standardizing data before comparison operations.
curl "https://tinyfn.io/v1/case/lower" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/case/lower', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/case/lower',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's case conversion tools:
{
"mcpServers": {
"tinyfn-case": {
"url": "https://tinyfn.io/mcp/case",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Simply call the tool with your text string as input. The MCP tool handles Unicode properly, converting accented characters like 'CAFÉ' to 'café' correctly.
Yes, it uses Unicode-compliant transformation rules. Characters like 'İ' (Turkish capital I) convert to 'i̇', and 'Ω' becomes 'ω' following proper Unicode standards.
Absolutely. It's ideal for standardizing text before database operations, search indexing, or email address validation where case sensitivity matters.
Send a GET request to /v1/case/lower with your text parameter. Returns the lowercase version immediately without any processing delays.
Both follow Unicode standards, but this tool provides consistent results across different environments and handles edge cases in locale-specific transformations more reliably.
Get your free API key and start using To Lower Case in seconds.
Get Free API Key