Skip to main content
Glama

MCP Server Chart

Official
violin.json2.9 kB
{ "name": "generate_violin_chart", "description": "Generate a violin 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 '分类一'." }, "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 violin chart." } }, "required": ["category", "value"] }, "minItems": 1, "description": "Data for violin chart, such as, [{ category: '分类一', value: 10 }] or [{ category: '分类二', value: 20, group: '组别一' }]." }, "theme": { "type": "string", "enum": ["default", "academy", "dark"], "default": "default", "description": "Set the theme for the chart, optional, default is 'default'." }, "style": { "description": "Custom style configuration for the chart.", "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" } }, "type": "object" }, "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#" } }

MCP directory API

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