json_to_excel_mcp_from_dataConvert JSON data to CSV data. Input schema{
"type": "object",
"properties": {
"data": {
"type": "string",
"minLength": 1,
"description": "JSON data to be converted to CSV"
},
"options": {
"type": "object",
"properties": {
"jsonMode": {
"type": "string",
"enum": [
"nested",
"flat"
],
"description": "Format mode for JSON output: “nested”, or “flat”"
},
"delimiter": {
"type": "string",
"enum": [
".",
"_",
"__",
"/"
],
"description": "Delimiter character for nested JSON keys when using jsonMode: “nested”, acceptable delimiters are “.”, “_”, “__”, “/”."
},
"maxDepth": {
"type": "string",
"enum": [
"unlimited",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20"
],
"description": "Maximum depth for nested JSON objects when using jsonMode: “nested”. For maxDepth, “unlimited”, “1” ~ “20” acceptable."
},
"proCode": {
"type": "string",
"description": "Pro Code for JSON to Excel MCP by WTSolutions."
}
},
"additionalProperties": false
}
},
"required": [
"data"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
json_to_excel_mcp_from_urlConvert JSON data from publicly accessible URL(.json format) to CSV data.Input schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"minLength": 1,
"description": "Publicly accessible URL of the JSON file"
},
"options": {
"type": "object",
"properties": {
"jsonMode": {
"type": "string",
"enum": [
"nested",
"flat"
],
"description": "Format mode for JSON output: “nested”, or “flat”"
},
"delimiter": {
"type": "string",
"enum": [
".",
"_",
"__",
"/"
],
"description": "Delimiter character for nested JSON keys when using jsonMode: “nested”, acceptable delimiters are “.”, “_”, “__”, “/”."
},
"maxDepth": {
"type": "string",
"enum": [
"unlimited",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20"
],
"description": "Maximum depth for nested JSON objects when using jsonMode: “nested”. For maxDepth, “unlimited”, “1” ~ “20” acceptable."
},
"proCode": {
"type": "string",
"description": "Pro Code for JSON to Excel MCP by WTSolutions. "
}
},
"additionalProperties": false
}
},
"required": [
"url"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |