Data Processing
Convierte pares clave-valor aplanados de nuevo a objetos JSON anidados con soporte para diferentes formatos de clave
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/json-unflattener' \
-H 'Content-Type: application/json' \
-d '{"dataInput":"{\n \"user.name\": \"John\",\n \"user.age\": \"30\",\n \"user.city\": \"New York\",\n \"settings.theme\": \"dark\",\n \"settings.notifications\": \"true\"\n}","inputFormat":"json","keyFormat":"nested","delimiter":".","typeInference":"auto","arrayMode":"numeric","mergeStrategy":"override","preserveEmpty":true}'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/json-unflattener| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| dataInput | textarea | Sí | — |
| inputFormat | select | Sí | — |
| keyFormat | select | Sí | — |
| delimiter | text | No | — |
| typeInference | select | Sí | — |
| arrayMode |
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-json-unflattener": {
"name": "json-unflattener",
"description": "Convierte pares clave-valor aplanados de nuevo a objetos JSON anidados con soporte para diferentes formatos de clave",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=json-unflattener",
"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": "json-unflattener",
"arguments": {
"dataInput": "{\n \"user.name\": \"John\",\n \"user.age\": \"30\",\n \"user.city\": \"New York\",\n \"settings.theme\": \"dark\",\n \"settings.notifications\": \"true\"\n}",
"inputFormat": "json",
"keyFormat": "nested",
"delimiter": ".",
"typeInference": "auto",
"arrayMode": "numeric",
"mergeStrategy": "override",
"preserveEmpty": true
}
}
}| select |
| Sí |
| — |
| mergeStrategy | select | Sí | — |
| preserveEmpty | checkbox | No | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}¿Dudas o problemas? Contacta con [email protected]