mpl_mcp_plot_barchart
Generate bar charts by plotting numerical data with customizable labels, titles, axis labels, colors, and orientation on the Fermat MCP server.
Instructions
Plots barchart of given datavalues
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | skyblue | |
| dpi | No | ||
| labels | No | ||
| orientation | No | vertical | |
| save | No | ||
| title | No | ||
| values | Yes | ||
| xlabel | No | ||
| ylabel | No |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"default": "skyblue",
"title": "Color",
"type": "string"
},
"dpi": {
"default": 200,
"title": "Dpi",
"type": "integer"
},
"labels": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Labels"
},
"orientation": {
"default": "vertical",
"enum": [
"vertical",
"horizontal"
],
"title": "Orientation",
"type": "string"
},
"save": {
"default": false,
"title": "Save",
"type": "boolean"
},
"title": {
"default": "",
"title": "Title",
"type": "string"
},
"values": {
"items": {
"type": "number"
},
"title": "Values",
"type": "array"
},
"xlabel": {
"default": "",
"title": "Xlabel",
"type": "string"
},
"ylabel": {
"default": "",
"title": "Ylabel",
"type": "string"
}
},
"required": [
"values"
],
"type": "object"
}