1.4.0npm · @amcharts/amcharts5-mcp · latest release
Observed 2026-08-17T14:13:12.571Z using mcpSecurity-inventory. Protocol 2025-06-18.
| Tool | Category | Risk |
|---|---|---|
get_api_referenceGet the per-class API reference for an amCharts 5 class — the class page PLUS its settings table (with DEFAULTS) and, optionally, its private/read-only settings. This is the authoritative source for exact setting names and default values (e.g. tooltip background cornerRadius, axis tick `visible` default). Pass a class name in any casing, e.g. 'XYCursor', 'Tooltip', 'PieSeries', 'AxisRendererX'.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"className": {
"type": "string",
"description": "amCharts 5 class name, e.g. 'XYCursor', 'Tooltip', 'PieSeries', 'ColumnSeries', 'AxisRendererX'. Casing/punctuation are ignored."
},
"includePrivate": {
"default": false,
"description": "Also include the private (read-only / internal) settings table. Default false.",
"type": "boolean"
}
},
"required": [
"className"
]
} | — | — |
get_chart_referenceGet the full reference documentation for a specific amCharts 5 chart type. Use list_chart_types first to see available types.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"chartType": {
"type": "string",
"description": "Chart type keyword, e.g. 'pie', 'sankey', 'xy', 'treemap', 'map', 'radar', 'stock', 'gantt', 'venn', 'wordcloud', 'timeline', 'flow', 'hierarchy', 'ui-elements'"
}
},
"required": [
"chartType"
]
} | — | — |
get_core_referenceGet the core amCharts 5 reference (SKILL.md) — covers setup, colors, themes, legends, tooltips, events, data, adapters, disposal, and common pitfalls. Read this first before any chart-specific reference.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {}
} | — | — |
get_docGet a full documentation page from the extended amCharts 5 docs. Use search_all first to find the right path.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Doc path, e.g. 'charts/xy-chart/cursor', 'concepts/events', 'getting-started/integrations/react', 'reference/xycursor' (per-class API). For a class's full settings + defaults prefer get_api_reference."
}
},
"required": [
"path"
]
} | — | — |
get_exampleGet the full code for a specific amCharts 5 example/demo. Use list_examples or search_all to find the path.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Example path, e.g. 'examples/flow/sankey-diagram', 'examples/pie-donut/donut-chart', 'examples/maps/drill-down-map'"
}
},
"required": [
"path"
]
} | — | — |
get_quick_startGet a quick-start template for a specific chart type — a minimal working example ready to customize.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"chartType": {
"type": "string",
"description": "Chart type, e.g. 'pie', 'line', 'bar', 'map', 'sankey', 'treemap'"
},
"format": {
"default": "html",
"description": "Output format: 'html' for a full HTML page with CDN scripts, 'esm' for ES module imports",
"type": "string",
"enum": [
"html",
"esm"
]
}
},
"required": [
"chartType"
]
} | — | — |
get_sectionGet a specific section from an amCharts 5 reference file by heading name. Use search_docs first to find the right section.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"file": {
"type": "string",
"description": "Reference file name without .md, e.g. 'xy', 'pie', 'SKILL', 'map'"
},
"heading": {
"type": "string",
"description": "Section heading to retrieve, e.g. 'Core setup pattern', 'Axis types', 'Common pitfalls'"
}
},
"required": [
"file",
"heading"
]
} | — | — |
list_chart_typesList all amCharts 5 chart types with their categories and reference file namesInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {}
} | — | — |
list_examplesList all available amCharts 5 code examples, optionally filtered by category.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"category": {
"description": "Filter by category, e.g. 'column-bar', 'line-area', 'pie-donut', 'maps', 'flow', 'hierarchy', 'stock', 'gantt', 'gauges', 'radar-polar', 'timeline', 'funnel-pyramid'. Omit to list all categories.",
"type": "string"
}
}
} | — | — |
search_allSearch across ALL amCharts 5 content: skill references, full documentation, and code examples. Use this for broad searches across everything.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query, e.g. 'react integration', 'date axis formatting', 'stacked bar example'"
},
"maxResults": {
"default": 10,
"description": "Maximum results (default 10)",
"type": "number"
}
},
"required": [
"query"
]
} | — | — |
search_docsSearch the curated amCharts 5 skill docs (SKILL.md + chart references) for a keyword or topic, returning matching sections ranked by relevance. NOTE: by default this scans ONLY the skill layer. The per-class API reference and per-setting DEFAULTS (e.g. tooltip background cornerRadius, axis tick `visible` default, cursor line strokeDasharray) live in the extended docs — pass scope:'all' here, or use search_all / get_api_reference / get_doc, to reach them.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query, e.g. 'legend', 'axis label rotation', 'tooltip format', 'data processor'"
},
"maxResults": {
"default": 5,
"description": "Maximum number of results to return (default 5)",
"type": "number"
},
"scope": {
"default": "skill",
"description": "'skill' (default) searches only the curated skill docs; 'all' also searches the extended docs / per-class API reference where settings and defaults live.",
"type": "string",
"enum": [
"skill",
"all"
]
}
},
"required": [
"query"
]
} | — | — |
amCharts 5 reference: Flow Charts — Sankey, Chord, Arc Diagrams
{
"resource_key": "amcharts://docs/flow",
"uri": "amcharts://docs/flow",
"name": "flow",
"description": "amCharts 5 reference: Flow Charts — Sankey, Chord, Arc Diagrams",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "d6a51556af5fd51c9ab817661febd3bcf8ffc6a3b132fe2e5ff87749696db85b"
}amCharts 5 reference: Gantt Chart
{
"resource_key": "amcharts://docs/gantt",
"uri": "amcharts://docs/gantt",
"name": "gantt",
"description": "amCharts 5 reference: Gantt Chart",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "23ca5aca32ecb44b1782ebd3df8cbba4632373b413f918dd4919380bc4619048"
}amCharts 5 reference: Hierarchy Charts — Treemap, Sunburst, Force-Directed
{
"resource_key": "amcharts://docs/hierarchy",
"uri": "amcharts://docs/hierarchy",
"name": "hierarchy",
"description": "amCharts 5 reference: Hierarchy Charts — Treemap, Sunburst, Force-Directed",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "09a987d201a4170a72b0ff5690c0c9109b0bd46c5b57ba625c646f7fc0a81ca4"
}amCharts 5 reference: Map Charts — Geographic Visualizations
{
"resource_key": "amcharts://docs/map",
"uri": "amcharts://docs/map",
"name": "map",
"description": "amCharts 5 reference: Map Charts — Geographic Visualizations",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "82cb295e011f5cfe9c50d08865a31fe0cbb20f9cb206f9450d34df4df84b4c4e"
}amCharts 5 reference: Pie & Sliced Charts — Pie, Donut, Funnel, Pyramid
{
"resource_key": "amcharts://docs/pie",
"uri": "amcharts://docs/pie",
"name": "pie",
"description": "amCharts 5 reference: Pie & Sliced Charts — Pie, Donut, Funnel, Pyramid",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "f3cf4a70e48c02bb7e016197c03f1c7f7b12a9046b26447f97521c14f1dbcecd"
}amCharts 5 reference: Radar & Gauge Charts
{
"resource_key": "amcharts://docs/radar",
"uri": "amcharts://docs/radar",
"name": "radar",
"description": "amCharts 5 reference: Radar & Gauge Charts",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "255ae4a7925d94ef60b1250cdc4f3c111ec65b4cb9c38172250561bd1c719154"
}amCharts 5 reference: amCharts 5
{
"resource_key": "amcharts://docs/SKILL",
"uri": "amcharts://docs/SKILL",
"name": "SKILL",
"description": "amCharts 5 reference: amCharts 5",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "fb21588f6827dce33fbe6e5738c1a81b8979078fefd8f3e9ce45deba68604d37"
}amCharts 5 reference: Stock & Financial Charts
{
"resource_key": "amcharts://docs/stock",
"uri": "amcharts://docs/stock",
"name": "stock",
"description": "amCharts 5 reference: Stock & Financial Charts",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "c12de1f427a6b28406ac7d58e9e28d9fdd7ebfdcc2f09c8cf88e80d646a25c73"
}amCharts 5 reference: Timeline Charts — Curve, Serpentine, Spiral
{
"resource_key": "amcharts://docs/timeline",
"uri": "amcharts://docs/timeline",
"name": "timeline",
"description": "amCharts 5 reference: Timeline Charts — Curve, Serpentine, Spiral",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "78a8e504b513c2a9770ba3f65c05fafb3b7fd2b848ca60edf618bcffb680b89c"
}amCharts 5 reference: UI Elements — Buttons, Sliders, Steppers, and More
{
"resource_key": "amcharts://docs/ui-elements",
"uri": "amcharts://docs/ui-elements",
"name": "ui-elements",
"description": "amCharts 5 reference: UI Elements — Buttons, Sliders, Steppers, and More",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "1efac86ccf0b1b9c7658e51a57baf5f8ceebcebb8c0f25b161a2a0ffda7a9ad9"
}amCharts 5 reference: Venn Diagram
{
"resource_key": "amcharts://docs/venn",
"uri": "amcharts://docs/venn",
"name": "venn",
"description": "amCharts 5 reference: Venn Diagram",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "80120052b6b44e9e649abde786a634c029a01e8ebc50b6646df5d67027b1c617"
}amCharts 5 reference: Word Cloud
{
"resource_key": "amcharts://docs/wordcloud",
"uri": "amcharts://docs/wordcloud",
"name": "wordcloud",
"description": "amCharts 5 reference: Word Cloud",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "7362fcfa3bcd664804351f915880dd0b35d6423b875f8546f9ff44020418dc68"
}amCharts 5 reference: XY Charts — Line, Area, Bar, Column, Candlestick, Scatter
{
"resource_key": "amcharts://docs/xy",
"uri": "amcharts://docs/xy",
"name": "xy",
"description": "amCharts 5 reference: XY Charts — Line, Area, Bar, Column, Candlestick, Scatter",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "1036dddd74cfcd947114c0e141661f09848856cfd02244d10d0b67e8340a9325"
}Compared with initial baseline using full_baseline.
| Risk | Change | Subject |
|---|---|---|
| No material changes recorded. | ||
| Severity | Finding | Advisory |
|---|---|---|
| No confirmed vulnerability is published for this version. | ||
Artifact SHA-256: e9551a410f86dae57f9767ffe82f16a6fcef881854dbaa8218c645b815642577
Scanner: mcp-proof-engine 0.1.0.