Text Processing
Convert a 2-space / 4-space / Tab indented hierarchical list (Markdown bullets, -, *, 1. prefixes optional) into a copyable ASCII directory tree. Two styles: Unicode box-drawing (├──└──│) for GitHub/Discord and classic ASCII (|--\--|) for plain text. Toggles for full guide lines, trailing spaces, and bracketed leaf nodes like docs/[api.md].
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ascii-tree-from-indented-list' \
-H 'Content-Type: application/json' \
-d '{"list":"src\n index.ts\n tools\n json-formatter.ts\n qr-code-generator.ts\n package.json","style":"unicode","indentUnit":"auto","fullGuide":true,"leafBracket":false,"trimTrailing":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/ascii-tree-from-indented-list| Name | Type | Required | Description |
|---|---|---|---|
| list | textarea | Yes | — |
| style | select | No | — |
| indentUnit | select | No | — |
| fullGuide | checkbox | No | — |
| leafBracket | checkbox | No | — |
| trimTrailing |
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-ascii-tree-from-indented-list": {
"name": "ascii-tree-from-indented-list",
"description": "Convert a 2-space / 4-space / Tab indented hierarchical list (Markdown bullets, -, *, 1. prefixes optional) into a copyable ASCII directory tree. Two styles: Unicode box-drawing (├──└──│) for GitHub/Discord and classic ASCII (|--\\--|) for plain text. Toggles for full guide lines, trailing spaces, and bracketed leaf nodes like docs/[api.md].",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ascii-tree-from-indented-list",
"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": "ascii-tree-from-indented-list",
"arguments": {
"list": "src\n index.ts\n tools\n json-formatter.ts\n qr-code-generator.ts\n package.json",
"style": "unicode",
"indentUnit": "auto",
"fullGuide": true,
"leafBracket": false,
"trimTrailing": true
}
}
}| checkbox |
| No |
| — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]