Categories

Unzip Arrays

Split grouped arrays using lodash _.unzip

Separate grouped arrays back into individual arrays. **Highlights:** - Uses lodash `_.unzip` - Accepts an array of grouped values - Works with arrays produced by zip **Example:** - Grouped: `[["a", 1], ["b", 2]]` - Result: `[["a", "b"], [1, 2]]`

Enter a JSON array of grouped values

API Documentation

Request Endpoint

POST /en/api/tools/unzip-arrays

Request Parameters

Parameter Name Type Required Description
grouped textarea Yes Enter a JSON array of grouped values

Response Format

{
  "result": "Processed text content",
  "error": "Error message (optional)",
  "message": "Notification message (optional)",
  "metadata": {
    "key": "value"
  }
}
Text: Text

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-unzip-arrays": {
      "name": "unzip-arrays",
      "description": "Split grouped arrays using lodash _.unzip",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=unzip-arrays",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]