We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/antvis/mcp-server-chart'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
boxplot.json•3.24 kB
{
"name": "generate_boxplot_chart",
"description": "Generate a boxplot chart to show data for statistical summaries among different categories, such as, comparing the distribution of data points across categories.",
"inputSchema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Category of the data point, such as '\u5206\u7c7b\u4e00'."
},
"value": {
"type": "number",
"description": "Value of the data point, such as 10."
},
"group": {
"type": "string",
"description": "Optional group for the data point, used for grouping in the boxplot."
}
},
"required": ["category", "value"]
},
"minItems": 1,
"description": "Data for boxplot chart, such as, [{ category: '\u5206\u7c7b\u4e00', value: 10 }] or [{ category: '\u5206\u7c7b\u4e8c', value: 20, group: '\u7ec4\u522b\u4e00' }]."
},
"style": {
"description": "Style configuration for the chart with a JSON object, optional.",
"properties": {
"backgroundColor": {
"description": "Background color of the chart, such as, '#fff'.",
"type": "string"
},
"palette": {
"description": "Color palette for the chart, it is a collection of colors.",
"items": {
"type": "string"
},
"type": "array"
},
"texture": {
"default": "default",
"description": "Set the texture for the chart, optional, default is 'default'. 'rough' refers to hand-drawn style.",
"enum": ["default", "rough"],
"type": "string"
},
"startAtZero": {
"type": "boolean",
"description": "Whether to start the axis at zero, optional, default is false.",
"default": false
}
},
"type": "object"
},
"theme": {
"type": "string",
"enum": ["default", "academy", "dark"],
"default": "default",
"description": "Set the theme for the chart, optional, default is 'default'."
},
"width": {
"type": "number",
"default": 600,
"description": "Set the width of chart, default is 600."
},
"height": {
"type": "number",
"default": 400,
"description": "Set the height of chart, default is 400."
},
"title": {
"type": "string",
"default": "",
"description": "Set the title of chart."
},
"axisXTitle": {
"type": "string",
"default": "",
"description": "Set the x-axis title of chart."
},
"axisYTitle": {
"type": "string",
"default": "",
"description": "Set the y-axis title of chart."
}
},
"required": ["data"],
"$schema": "http://json-schema.org/draft-07/schema#"
},
"annotations": {
"title": "Generate Boxplot Chart",
"readOnlyHint": true
}
}