Development
Compare JSON, YAML, TOML, and dotenv configurations by key path while ignoring ordering and formatting noise.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/config-file-semantic-diff' \
-H 'Content-Type: application/json' \
-d '{"leftConfig":"{\"server\":{\"port\":8080,\"tags\":[\"api\",\"web\"]}}","leftFormat":"json","rightConfig":"server:\n tags: [api, web]\n port: 9090\n","rightFormat":"yaml"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/config-file-semantic-diff| Name | Type | Required | Description |
|---|---|---|---|
| leftConfig | textarea | Yes | — |
| leftFormat | select | No | — |
| rightConfig | textarea | Yes | — |
| rightFormat | select | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"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-config-file-semantic-diff": {
"name": "config-file-semantic-diff",
"description": "Compare JSON, YAML, TOML, and dotenv configurations by key path while ignoring ordering and formatting noise.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=config-file-semantic-diff",
"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": "config-file-semantic-diff",
"arguments": {
"leftConfig": "{\"server\":{\"port\":8080,\"tags\":[\"api\",\"web\"]}}",
"leftFormat": "json",
"rightConfig": "server:\n tags: [api, web]\n port: 9090\n",
"rightFormat": "yaml"
}
}
}Questions or issues? Contact [email protected]