MCP server intelligence profile

amCharts 5 MCP Server

MCP server that gives AI assistants on-demand access to 1,500+ amCharts 5 docs, ~300 code examples, and 1000+ class API references

Local OnlyOfficial distributionamcharts
Verified cleanNpm · 1.4.0

Our scanner tested version 1.4.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
11Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @amcharts/amcharts5-mcp from npm

Version 1.4.0 declares 1 executable entrypoint.

npm install --save-exact @amcharts/amcharts5-mcp@1.4.0
npx -y -p @amcharts/amcharts5-mcp@1.4.0 @amcharts/amcharts5-mcp
MCP client configuration example
{
  "mcpServers": {
    "@amcharts/amcharts5-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@amcharts/amcharts5-mcp@1.4.0",
        "@amcharts/amcharts5-mcp"
      ]
    }
  }
}

Identity

Canonical slugamcharts-5-mcp-server-b604e010DeploymentLocal Only
Canonical packagenpm:@amcharts/amcharts5-mcpRepositoryamcharts/amcharts5-mcp
First publishedLatest release
Last security verificationAug 17, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@amcharts/amcharts5-mcp1.4.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@amcharts/amcharts5-mcp1.4.0CurrentSep 5, 202611 toolsSucceeded · 13 resources · 0 promptsVerified clean
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-256e9551a410f86dae57f9767ffe82f16a6fcef881854dbaa8218c645b815642577
Scannermcp-proof-engine 0.1.0Scan completedAug 17, 2026
Security rating23 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "@amcharts/amcharts5-mcp"
]
Rating reasons
[
  "security_policy_not_observed"
]
0Proven
516Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
amcharts5Server-reported name
2Capability groups
Aug 17, 2026Observed

Tools 11

ToolCategoryAnnotationsRisk
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 names
Input 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"
  ]
}

Resources 13

  • flowamcharts://docs/flow

    amCharts 5 reference: Flow Charts — Sankey, Chord, Arc Diagrams

  • ganttamcharts://docs/gantt

    amCharts 5 reference: Gantt Chart

  • hierarchyamcharts://docs/hierarchy

    amCharts 5 reference: Hierarchy Charts — Treemap, Sunburst, Force-Directed

  • mapamcharts://docs/map

    amCharts 5 reference: Map Charts — Geographic Visualizations

  • pieamcharts://docs/pie

    amCharts 5 reference: Pie & Sliced Charts — Pie, Donut, Funnel, Pyramid

  • radaramcharts://docs/radar

    amCharts 5 reference: Radar & Gauge Charts

  • SKILLamcharts://docs/SKILL

    amCharts 5 reference: amCharts 5

  • stockamcharts://docs/stock

    amCharts 5 reference: Stock & Financial Charts

  • timelineamcharts://docs/timeline

    amCharts 5 reference: Timeline Charts — Curve, Serpentine, Spiral

  • ui-elementsamcharts://docs/ui-elements

    amCharts 5 reference: UI Elements — Buttons, Sliders, Steppers, and More

  • vennamcharts://docs/venn

    amCharts 5 reference: Venn Diagram

  • wordcloudamcharts://docs/wordcloud

    amCharts 5 reference: Word Cloud

  • xyamcharts://docs/xy

    amCharts 5 reference: XY Charts — Line, Area, Bar, Column, Candlestick, Scatter

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

amCharts 5 MCP Server questions

How do I install amCharts 5 MCP Server?

Install the selected package version with: npm install --save-exact @amcharts/amcharts5-mcp@1.4.0

What tools does amCharts 5 MCP Server provide?

amCharts 5 MCP Server exposed 11 tools during independent protocol observation, including get_api_reference, get_chart_reference, get_core_reference, get_doc, get_example, get_quick_start, get_section, list_chart_types, and others.

Is amCharts 5 MCP Server secure?

Our scanner tested version 1.4.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Let’s talk about MCP security.

Share your details and our security team will contact you.