Format Conversion
Parse and convert SSH configuration file to JSON format
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ssh-config-parser' \
-H 'Content-Type: application/json' \
-d '{"sshConfig":"Enter SSH config content...\n\nHost github.com\n HostName github.com\n User git\n IdentityFile ~/.ssh/id_rsa\n\nHost server\n HostName 192.168.1.100\n User admin","outputFormat":"json"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/ssh-config-parser| Name | Type | Required | Description |
|---|---|---|---|
| sshConfig | textarea | Yes | — |
| outputFormat | select | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}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-ssh-config-parser": {
"name": "ssh-config-parser",
"description": "Parse and convert SSH configuration file to JSON format",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ssh-config-parser",
"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": "ssh-config-parser",
"arguments": {
"sshConfig": "Enter SSH config content...\n\nHost github.com\n HostName github.com\n User git\n IdentityFile ~/.ssh/id_rsa\n\nHost server\n HostName 192.168.1.100\n User admin",
"outputFormat": "json"
}
}
}Questions or issues? Contact [email protected]