configure_preferences
Set chart output format, theme, and dimensions for data visualizations. Customize preferences or reset to defaults to control how plots are displayed.
Instructions
Interactive configuration tool for setting user preferences.
Parameters:
- output_format: "mermaid", "mcp_image", or "mcp_text"
- theme: "default", "dark", "seaborn", "minimal", etc.
- chart_width: Chart width in pixels
- chart_height: Chart height in pixels
- reset_to_defaults: Reset all preferences to system defaults
If no parameters provided, shows current configuration with sample.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chart_height | No | ||
chart_width | No | ||
output_format | No | ||
reset_to_defaults | No | ||
theme | No |
Input Schema (JSON Schema)
{
"properties": {
"chart_height": {
"default": null,
"title": "Chart Height",
"type": "integer"
},
"chart_width": {
"default": null,
"title": "Chart Width",
"type": "integer"
},
"output_format": {
"default": null,
"title": "Output Format",
"type": "string"
},
"reset_to_defaults": {
"default": false,
"title": "Reset To Defaults",
"type": "boolean"
},
"theme": {
"default": null,
"title": "Theme",
"type": "string"
}
},
"type": "object"
}