Converts any text string to UPPERCASE format through MCP or REST API at `/v1/case/upper`. Perfect for standardizing user input, creating constants, or formatting headers. Works with Unicode characters and preserves spacing. Cursor and other MCP-enabled editors can call this deterministic function to ensure consistent text transformation without hallucination.
curl "https://tinyfn.io/v1/case/upper" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/case/upper', {
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/upper',
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"
}
}
}
}
Call the 'To Upper Case' tool with your text string as input. The MCP integration handles the conversion deterministically, returning properly formatted UPPERCASE text.
Yes, it handles Unicode characters correctly, converting accented letters (é→É) and international characters while preserving numbers, spaces, and punctuation marks.
Send a GET request to `/v1/case/upper` with your text parameter. Returns the uppercased string in JSON format.
Absolutely. Convert 'myVariableName' to 'MYVARIABLENAME' for constant declarations, though you may need separate word separation for 'MY_VARIABLE_NAME' style.
Numbers and special characters remain unchanged, only letters convert: 'Hello123World' becomes 'HELLO123WORLD'.
Get your free API key and start using To Upper Case in seconds.
Get Free API Key