Format Conversion
Convert various text formats to XML with customizable structure and formatting options
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/text-to-xml' \
-H 'Content-Type: application/json' \
-d '{"textInput":"Enter your text data to convert to XML:\nname,age,city\nJohn,25,New York\nJane,30,London\n\nOr paste JSON, key-value pairs, or other formats...","inputFormat":"auto","rootElement":"root","rowElement":"item","includeDeclaration":true,"includeAttributes":false,"attributeName":"value","cdataSections":false,"escapeSpecialChars":true,"prettyPrint":true,"indentSize":"2","showStats":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-to-xml| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| textInput | textarea | Sí | — |
| inputFormat | select | Sí | — |
| rootElement | text | No | — |
| rowElement | text | No | — |
| includeDeclaration | checkbox | No | — |
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-to-xml": {
"name": "text-to-xml",
"description": "Convert various text formats to XML with customizable structure and formatting options",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-to-xml",
"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-to-xml",
"arguments": {
"textInput": "Enter your text data to convert to XML:\nname,age,city\nJohn,25,New York\nJane,30,London\n\nOr paste JSON, key-value pairs, or other formats...",
"inputFormat": "auto",
"rootElement": "root",
"rowElement": "item",
"includeDeclaration": true,
"includeAttributes": false,
"attributeName": "value",
"cdataSections": false,
"escapeSpecialChars": true,
"prettyPrint": true,
"indentSize": "2",
"showStats": false
}
}
}| includeAttributes |
| checkbox |
| No |
| — |
| attributeName | text | No | — |
| cdataSections | checkbox | No | — |
| escapeSpecialChars | checkbox | No | — |
| prettyPrint | checkbox | No | — |
| indentSize | number | No | — |
| showStats | checkbox | No | — |
Resultado de texto
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}¿Dudas o problemas? Contacta con [email protected]