AI Tools
Fortschrittlicher KI-Titel-Generator, der ansprechende, SEO-optimierte und aufmerksamkeitsstarke Titel erstellt
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/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"}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/title-generator| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| content | textarea | Ja | Provide a brief summary or key points about your content to help generate relevant titles |
| contentType | select | Ja | Select the type of content you are creating |
| titleStyle | select | Ja | Choose the style for your titles |
| titleTone | select | Ja | Select the tone for your titles |
| targetAudience | select | Ja |
Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-title-generator": {
"name": "title-generator",
"description": "Fortschrittlicher KI-Titel-Generator, der ansprechende, SEO-optimierte und aufmerksamkeitsstarke Titel erstellt",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=title-generator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"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 | Nein | Optional: Enter main keywords to include in titles for SEO purposes |
| language | select | Ja | Select the language for generated titles |
| numberOfTitles | number | Ja | How many title suggestions would you like? |
| includeSeo | checkbox | Nein | Include SEO optimization analysis and keyword suggestions |
| exportFormat | select | Nein | Choose the format for title suggestions |
Stream-Ergebnis
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Fragen oder Probleme? Kontakt: [email protected]