Smart title case converts text to proper title capitalization by intelligently handling articles, prepositions, and conjunctions. Access via MCP in Cursor or Windsurf, or REST at `/v1/text/title-case-smart`. Example: "the quick brown fox" becomes "The Quick Brown Fox". Follows Associated Press and Chicago Manual style rules for professional formatting.
curl "https://tinyfn.io/v1/text/title-case-smart" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/text/title-case-smart', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/text/title-case-smart',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's text analysis tools:
{
"mcpServers": {
"tinyfn-text": {
"url": "https://tinyfn.io/mcp/text",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Smart title case follows style guide rules — articles like 'the', 'a', 'an' and short prepositions like 'of', 'in', 'on' stay lowercase unless they're the first or last word. Regular title case capitalizes every word.
It follows Associated Press (AP) and Chicago Manual of Style conventions, keeping articles, coordinating conjunctions, and prepositions under 5 letters lowercase in the middle of titles.
Yes, use the MCP tool in Cursor, Windsurf, or other supported editors to process multiple titles at once. The deterministic output ensures consistent formatting across all your content.
Yes, it properly capitalizes both parts of hyphenated compounds and handles edge cases like 'Co-founder' or 'Self-Driving Car' according to standard style conventions.
Existing acronyms like 'API' and 'JSON' are preserved, and the tool respects proper nouns. However, it cannot identify unknown proper nouns from context alone.
Get your free API key and start using Smart Title Case in seconds.
Get Free API Key