Format Conversion
Convert various text formats to JSON with customizable parsing options
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/text-to-json' \
-H 'Content-Type: application/json' \
-d '{"textInput":"Enter your text data to convert to JSON:\nname,age,city\nJohn,25,New York\nJane,30,London\n\nOr paste JSON, key-value pairs, INI format, etc...","inputFormat":"auto","delimiter":"Custom delimiter (e.g., |, ;, \\t)","outputType":"array","rootKey":"Root object key (optional)","arrayMode":false,"trimValues":true,"skipEmptyLines":true,"prettyPrint":true,"includeStats":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/text-to-json| Name | Type | Required | Description |
|---|---|---|---|
| textInput | textarea | Yes | — |
| inputFormat | select | Yes | — |
| delimiter | text | No | — |
| outputType | select | Yes | — |
| rootKey | text | No | — |
| arrayMode |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-text-to-json": {
"name": "text-to-json",
"description": "Convert various text formats to JSON with customizable parsing options",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-to-json",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "text-to-json",
"arguments": {
"textInput": "Enter your text data to convert to JSON:\nname,age,city\nJohn,25,New York\nJane,30,London\n\nOr paste JSON, key-value pairs, INI format, etc...",
"inputFormat": "auto",
"delimiter": "Custom delimiter (e.g., |, ;, \\t)",
"outputType": "array",
"rootKey": "Root object key (optional)",
"arrayMode": false,
"trimValues": true,
"skipEmptyLines": true,
"prettyPrint": true,
"includeStats": false
}
}
}| checkbox |
| No |
| — |
| trimValues | checkbox | No | — |
| skipEmptyLines | checkbox | No | — |
| prettyPrint | checkbox | No | — |
| includeStats | checkbox | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]