download_chart
Save chart images locally by specifying Chart.js configurations and output paths. Ideal for generating and storing customizable data visualizations directly from QuickChart-MCP-Server.
Instructions
Download a chart image to a local file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | Chart configuration object | |
outputPath | No | Path where the chart image should be saved. If not provided, the chart will be saved to Desktop or home directory. |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "Chart configuration object",
"type": "object"
},
"outputPath": {
"description": "Path where the chart image should be saved. If not provided, the chart will be saved to Desktop or home directory.",
"type": "string"
}
},
"required": [
"config"
],
"type": "object"
}