AI Tools
Advanced AI title generator that creates engaging, SEO-friendly, and attention-grabbing titles for articles, blogs, and content
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/title-generator' \
-H 'Content-Type: application/json' \
-d '{"content":"Enter a summary of your content or key points you want the title to reflect...","contentType":"blog","titleStyle":"statement","titleTone":"professional","targetAudience":"general","keywordFocus":"Enter main keywords separated by commas","language":"en","numberOfTitles":5,"includeSeo":true,"exportFormat":"readable"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/title-generator| Name | Type | Required | Description |
|---|---|---|---|
| content | textarea | Yes | Provide a brief summary or key points about your content to help generate relevant titles |
| contentType | select | Yes | Select the type of content you are creating |
| titleStyle | select | Yes | Choose the style for your titles |
| titleTone | select | Yes | Select the tone for your titles |
| targetAudience | select | Yes |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-title-generator": {
"name": "title-generator",
"description": "Advanced AI title generator that creates engaging, SEO-friendly, and attention-grabbing titles for articles, blogs, and content",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=title-generator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "title-generator",
"arguments": {
"content": "Enter a summary of your content or key points you want the title to reflect...",
"contentType": "blog",
"titleStyle": "statement",
"titleTone": "professional",
"targetAudience": "general",
"keywordFocus": "Enter main keywords separated by commas",
"language": "en",
"numberOfTitles": 5,
"includeSeo": true,
"exportFormat": "readable"
}
}
}| Select your target audience |
| keywordFocus | text | No | Optional: Enter main keywords to include in titles for SEO purposes |
| language | select | Yes | Select the language for generated titles |
| numberOfTitles | number | Yes | How many title suggestions would you like? |
| includeSeo | checkbox | No | Include SEO optimization analysis and keyword suggestions |
| exportFormat | select | No | Choose the format for title suggestions |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Questions or issues? Contact [email protected]