Text Processing
Ajusta el texto a longitudes de línea específicas con opciones personalizables
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/text-wrap' \
-H 'Content-Type: application/json' \
-d '{"textInput":"Enter text to wrap...","lineWidth":80,"breakWords":false,"preserveParagraphs":true,"indentFirst":0,"indentSubsequent":0,"bulletList":false,"numberedLines":false}'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/text-wrap| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| textInput | textarea | Sí | — |
| lineWidth | number | No | — |
| breakWords | checkbox | No | — |
| preserveParagraphs | checkbox | No | — |
| indentFirst | number | No | — |
| indentSubsequent |
Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-text-wrap": {
"name": "text-wrap",
"description": "Ajusta el texto a longitudes de línea específicas con opciones personalizables",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-wrap",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus parámetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "text-wrap",
"arguments": {
"textInput": "Enter text to wrap...",
"lineWidth": 80,
"breakWords": false,
"preserveParagraphs": true,
"indentFirst": 0,
"indentSubsequent": 0,
"bulletList": false,
"numberedLines": false
}
}
}¿Dudas o problemas? Contacta con [email protected]
| number |
| No |
| — |
| bulletList | checkbox | No | — |
| numberedLines | checkbox | No | — |
Resultado de texto
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}