toml-to-json
Convert TOML strings to JSON format for simplified data parsing and integration. A tool within the IT Tools MCP Server, designed for developers and system administrators.
Instructions
Convert TOML to JSON format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
toml | Yes | TOML string to convert |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"toml": {
"description": "TOML string to convert",
"type": "string"
}
},
"required": [
"toml"
],
"type": "object"
}