# io.github.amcharts/amcharts5 (npm · @amcharts/amcharts5-mcp)

On-demand access to amCharts 5 docs, code examples, and API reference

- Trust score: 71/100 (medium)
- Change this week: +18
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@amcharts/amcharts5-mcp`: 71/100 (this document), [markdown](https://verifymcp.io/servers/amcharts-amcharts5/amcharts-amcharts5-mcp.md), [page](https://verifymcp.io/servers/amcharts-amcharts5/amcharts-amcharts5-mcp)

## Channel facts

- Registry: `npm`
- Package: `@amcharts/amcharts5-mcp`
- Version: `1.1.3`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (134 of 138), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (134 of 138), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 34 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 994 tokens (~43/item across 23 items; 10 tools + 13 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add amcharts-amcharts5 -- npx -y @amcharts/amcharts5-mcp
```

### Codex

```bash
codex mcp add amcharts-amcharts5 -- npx -y @amcharts/amcharts5-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "amcharts-amcharts5": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@amcharts/amcharts5-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add amcharts-amcharts5 --command npx --arg -y --arg @amcharts/amcharts5-mcp
```

### Hermes

```yaml
mcp_servers:
  amcharts-amcharts5:
    command: "npx"
    args: ["-y", "@amcharts/amcharts5-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "amcharts-amcharts5": {
      "command": "npx",
      "args": [
        "-y",
        "@amcharts/amcharts5-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 71, +45)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional] Licence: MIT

### 2026-08-01 (score 26, −5)

- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified

### 2026-07-31 (score 31, −22)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 53)

First indexed and scored.

## MCP tools (10)

### `list_chart_types` (~25 tokens)

List all amCharts 5 chart types with their categories and reference file names

### `get_chart_reference` (~99 tokens)

Get the full reference documentation for a specific amCharts 5 chart type. Use list_chart_types first to see available types.

Input parameters:

- `chartType` (string, required): Chart type keyword, e.g. 'pie', 'sankey', 'xy', 'treemap', 'map', 'radar', 'stock', 'gantt', 'venn', 'wordcloud', 'timeline', 'flow', 'hierarchy', 'ui-elements'

### `get_core_reference` (~56 tokens)

Get 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.

### `search_docs` (~75 tokens)

Search across all amCharts 5 documentation for a keyword or topic. Returns matching sections ranked by relevance.

Input parameters:

- `maxResults` (number): Maximum number of results to return (default 5)
- `query` (string, required): Search query, e.g. 'legend', 'axis label rotation', 'tooltip format', 'data processor'

### `get_section` (~90 tokens)

Get a specific section from an amCharts 5 reference file by heading name. Use search_docs first to find the right section.

Input parameters:

- `file` (string, required): Reference file name without .md, e.g. 'xy', 'pie', 'SKILL', 'map'
- `heading` (string, required): Section heading to retrieve, e.g. 'Core setup pattern', 'Axis types', 'Common pitfalls'

### `get_quick_start` (~92 tokens)

Get a quick-start template for a specific chart type — a minimal working example ready to customize.

Input parameters:

- `chartType` (string, required): Chart type, e.g. 'pie', 'line', 'bar', 'map', 'sankey', 'treemap'
- `format` (string): Output format: 'html' for a full HTML page with CDN scripts, 'esm' for ES module imports

### `search_all` (~76 tokens)

Search across ALL amCharts 5 content: skill references, full documentation, and code examples. Use this for broad searches across everything.

Input parameters:

- `maxResults` (number): Maximum results (default 10)
- `query` (string, required): Search query, e.g. 'react integration', 'date axis formatting', 'stacked bar example'

### `get_doc` (~66 tokens)

Get a full documentation page from the extended amCharts 5 docs. Use search_all first to find the right path.

Input parameters:

- `path` (string, required): Doc path, e.g. 'charts/xy-chart/cursor', 'concepts/events', 'getting-started/integrations/react'

### `list_examples` (~92 tokens)

List all available amCharts 5 code examples, optionally filtered by category.

Input parameters:

- `category` (string): 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.

### `get_example` (~73 tokens)

Get the full code for a specific amCharts 5 example/demo. Use list_examples or search_all to find the path.

Input parameters:

- `path` (string, required): Example path, e.g. 'examples/flow/sankey-diagram', 'examples/pie-donut/donut-chart', 'examples/maps/drill-down-map'

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/amcharts-amcharts5/amcharts-amcharts5-mcp#diagnostics

## Score history

- 2026-08-03: 71
- 2026-08-02: 71
- 2026-08-01: 26
- 2026-07-31: 31
- 2026-07-30: 53
- 2026-07-28: 53
- 2026-07-27: 53

## Links

- npm package: https://www.npmjs.com/package/@amcharts/amcharts5-mcp
- Socket report: https://socket.dev/npm/package/@amcharts/amcharts5-mcp
- Repository: https://github.com/amcharts/amcharts5-mcp
- Changelog RSS feed: https://verifymcp.io/servers/amcharts-amcharts5/amcharts-amcharts5-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/amcharts-amcharts5/amcharts-amcharts5-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/amcharts-amcharts5/amcharts-amcharts5-mcp
