MCP Catalogs
Home

mcp-server-chart vs bambu-printer-mcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
bambu-printer-mcp
by DMontgomery40
Stars★ 4,068★ 41
30d uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptJavaScript
Last committhis monththis month

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

bambu-printer-mcp · Summary

A focused MCP server for Bambu Lab 3D printers offering STL manipulation, slicing, and direct printer control via MCP protocol.

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

bambu-printer-mcp · Use cases

  • Automate 3D printing workflows by having Claude Desktop prepare and send print jobs to Bambu Lab printers
  • Monitor printer status and AMS inventory remotely through MCP-compatible clients
  • Remotely control printer functions like pause/resume and adjust print parameters via Claude Code

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

bambu-printer-mcp · Install

Installation

Prerequisites

  • Node.js 18 or higher
  • npm
  • BambuStudio (optional, only needed for slicing)

Run without installing (npx)

npx @rowbotik/bambu-printer-mcp

Install globally from npm

npm install -g @rowbotik/bambu-printer-mcp

Install from source

git clone https://github.com/DMontgomery40/bambu-printer-mcp.git
cd bambu-printer-mcp
npm install
npm run build
npm run start

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "bambu-printer": {
      "command": "npx",
      "args": ["@rowbotik/bambu-printer-mcp"],
      "env": {
        "BAMBU_PRINTER_HOST": "your-printer.local",
        "BAMBU_PRINTER_TOKEN": "your-access-token"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.