-
Notifications
You must be signed in to change notification settings - Fork 377
Expand file tree
/
Copy pathmanifest.json
More file actions
129 lines (129 loc) · 3.82 KB
/
manifest.json
File metadata and controls
129 lines (129 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"manifest_version": "0.3",
"name": "AntV Chart Server",
"version": "0.9.10",
"description": "Visualization MCP server with 26 chart types using AntV for chart generation and data analysis",
"author": {
"name": "AntV Team",
"url": "https://github.com/antvis"
},
"repository": {
"type": "git",
"url": "https://github.com/antvis/mcp-server-chart"
},
"icon": "icon.png",
"server": {
"type": "node",
"entry_point": "build/index.js",
"mcp_config": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
},
"tools": [
{
"name": "generate_area_chart",
"description": "Generate area charts for showing trends over continuous data"
},
{
"name": "generate_bar_chart",
"description": "Generate horizontal bar charts for comparing categories"
},
{
"name": "generate_boxplot_chart",
"description": "Generate box-and-whisker plots for statistical distributions"
},
{
"name": "generate_column_chart",
"description": "Generate vertical column charts for comparing categories"
},
{
"name": "generate_district_map",
"description": "Generate district map visualizations (China regions)"
},
{
"name": "generate_dual_axes_chart",
"description": "Generate dual-axes charts for comparing different scales"
},
{
"name": "generate_fishbone_diagram",
"description": "Generate fishbone diagrams for cause-and-effect analysis"
},
{
"name": "generate_flow_diagram",
"description": "Generate flow diagrams for process visualization"
},
{
"name": "generate_funnel_chart",
"description": "Generate funnel charts for conversion or stage analysis"
},
{
"name": "generate_histogram_chart",
"description": "Generate histograms for frequency distributions"
},
{
"name": "generate_line_chart",
"description": "Generate line charts for trend analysis"
},
{
"name": "generate_liquid_chart",
"description": "Generate liquid/fill gauges for percentage displays"
},
{
"name": "generate_mind_map",
"description": "Generate mind maps for hierarchical idea organization"
},
{
"name": "generate_network_graph",
"description": "Generate network graphs for relationship visualization"
},
{
"name": "generate_organization_chart",
"description": "Generate org charts for hierarchical structures"
},
{
"name": "generate_path_map",
"description": "Generate path maps for route visualization (China)"
},
{
"name": "generate_pie_chart",
"description": "Generate pie charts for part-to-whole relationships"
},
{
"name": "generate_pin_map",
"description": "Generate pin maps for location markers (China)"
},
{
"name": "generate_radar_chart",
"description": "Generate radar/spider charts for multivariate comparison"
},
{
"name": "generate_sankey_chart",
"description": "Generate sankey diagrams for flow quantities"
},
{
"name": "generate_scatter_chart",
"description": "Generate scatter plots for correlation analysis"
},
{
"name": "generate_treemap_chart",
"description": "Generate treemaps for hierarchical data proportions"
},
{
"name": "generate_venn_chart",
"description": "Generate venn diagrams for set relationships"
},
{
"name": "generate_violin_chart",
"description": "Generate violin plots for distribution comparison"
},
{
"name": "generate_waterfall_chart",
"description": "Generate waterfall charts for cumulative effect analysis"
},
{
"name": "generate_word_cloud_chart",
"description": "Generate word clouds for text frequency visualization"
}
]
}