Skip to main content
Glama

MCP Server Chart

Official
flow-diagram.json2.41 kB
{ "name": "generate_flow_diagram", "description": "Generate a flow diagram chart to show the steps and decision points of a process or system, such as, scenarios requiring linear process presentation.", "inputSchema": { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "data": { "type": "object", "properties": { "nodes": { "type": "array", "minItems": 1, "items": { "properties": { "name": { "type": "string" } }, "required": ["name"], "type": "object" } }, "edges": { "type": "array", "items": { "properties": { "name": { "type": "string", "default": "" }, "source": { "type": "string" }, "target": { "type": "string" } }, "required": ["source", "target"], "type": "object" } } }, "required": ["nodes", "edges"], "description": "Data for flow diagram chart, such as, { nodes: [{ name: 'node1' }, { name: 'node2' }], edges: [{ source: 'node1', target: 'node2', name: 'edge1' }] }." }, "theme": { "default": "default", "description": "Set the theme for the chart, optional, default is 'default'.", "enum": ["default", "academy", "dark"], "type": "string" }, "style": { "description": "Custom style configuration for the chart.", "properties": { "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", "description": "Set the width of chart, default is 600.", "default": 600 }, "height": { "type": "number", "description": "Set the height of chart, default is 400.", "default": 400 } }, "required": ["data"] } }

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