AI Tools
Expansor de texto avançado com IA que transforma conteúdo breve em texto comprehensivo, detalhado e atractivo
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/api/tools/text-expander' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter the brief text you want to expand...","inputLanguage":"en","expansionType":"detailed","targetLength":"medium","outputLanguage":"en","expansionStyle":"neutral","exportFormat":"readable"}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST https://api.elysiatools.com/pt/api/tools/text-expander| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| text | textarea | Sim | Enter any brief text that needs expansion - outlines, summaries, short paragraphs, or ideas |
| inputLanguage | select | Sim | Select the language of your original text |
| expansionType | select | Sim | Choose the type of expansion you need |
| targetLength | select | Sim | Select how much you want the text to be expanded |
| outputLanguage | select |
Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-text-expander": {
"name": "text-expander",
"description": "Expansor de texto avançado com IA que transforma conteúdo breve em texto comprehensivo, detalhado e atractivo",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-expander",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus parâmetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "text-expander",
"arguments": {
"text": "Enter the brief text you want to expand...",
"inputLanguage": "en",
"expansionType": "detailed",
"targetLength": "medium",
"outputLanguage": "en",
"expansionStyle": "neutral",
"exportFormat": "readable"
}
}
}Dúvidas ou problemas? Contate [email protected]
| Select the language for expanded output |
| expansionStyle | select | Sim | Select the writing style for expansion |
| exportFormat | select | Não | Choose the format for the expanded output |
Resultado de fluxo
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}