🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

chartforge-mcp

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chartforge-mcp

MCP server for ChartForge — generate stunning charts and diagrams from natural language

latest
Source
npmnpm
Version
0.1.4
Version published
Weekly downloads
107
25.88%
Maintainers
1
Weekly downloads
 
Created
Source

ChartForge MCP Server

Generate stunning, publication-quality charts and diagrams from natural language — directly inside Claude.

Setup

1. Get a Free API Key

Get your free API key (10 charts/day, no credit card): chartforgeai.com/pricing

Or via command line:

curl -s -X POST https://chartforgeai.com/api/register \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}'

2. Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "chartforge": {
      "command": "npx",
      "args": ["chartforge-mcp"],
      "env": {
        "CHARTFORGE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Environment Variables

VariableRequiredDescription
CHARTFORGE_API_KEYYesYour API key from chartforgeai.com
CHARTFORGE_API_URLNoCustom API URL (default: https://chartforgeai.com)

Tools

generate_chart

Generate a chart from a natural language description.

Parameters:

  • prompt (required): Description of the chart
  • style (optional): Style preset — midnight, frost, ember, minimal, corporate, neon, light
  • width (optional): Width in pixels (default: 1200)
  • height (optional): Height in pixels (default: 800)

refine_chart

Modify a previously generated chart.

Parameters:

  • chartId (required): Chart ID from a previous generation
  • modification (required): What to change

list_styles

List available style presets with descriptions.

Examples

"Create a bar chart showing quarterly revenue from $2M to $18M over 3 years"

"System architecture diagram for a microservices backend"

"Sankey diagram of marketing budget flow through channels to conversions"

Keywords

mcp

FAQs

Package last updated on 16 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts