npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-quickchart

v1.0.2

Published

KR: QuickChart API를 이용해 데이터를 시각화하는 MCP 서버. EN: MCP server for QuickChart API operations over stdio and Streamable HTTP.

Downloads

406

Readme

QuickChart MCP Server (mcp-quickchart)

QuickChart(Chart.js 기반) API와 연동해 LLM이 입력 데이터를 차트 이미지로 생성할 수 있게 도와주는 MCP 서버입니다.

기능 (MCP Tools)

  • quickchart_generate_url: Chart.js 설정(JSON)을 받아 브라우저에서 열 수 있는 차트 URL 반환
  • quickchart_generate_base64: 차트 이미지를 Base64 문자열로 반환

환경 변수

  • QUICKCHART_URL: 기본값 https://quickchart.io
  • NODE_TLS_REJECT_UNAUTHORIZED: 사설 인증서 사용 시 0 (기본값 0)
  • PORT: HTTP 포트 (기본값 3000)
  • TRANSPORT: http 또는 sse면 HTTP 모드, 미설정 시 stdio 모드

MCP 설정 가이드

1) npm 패키지 기준 (권장)

{
  "mcpServers": {
    "mcp-quickchart": {
      "command": "npx",
      "args": ["-y", "mcp-quickchart"],
      "env": {
        "QUICKCHART_URL": "https://quickchart.io"
      }
    }
  }
}

2) 로컬 소스 기준

{
  "mcpServers": {
    "mcp-quickchart": {
      "command": "node",
      "args": ["D:/workspace/mcp-quickchart/build/index.js"]
    }
  }
}

실행 방법

로컬

npm install
npm run build
npm start

Docker (HTTP/SSE)

cp .env.example .env
docker-compose up -d --build

이후 http://localhost:3000/mcp 엔드포인트로 접근할 수 있습니다.