MCP Catalogs
Home

mcp-server-chart vs fal-mcp-server

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

mcp-server-chart
by antvis
fal-mcp-server
by luminarylane
Stars★ 4,068★ 44
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
MediaAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
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.

fal-mcp-server · Summary

MCP server for Fal.ai that enables Claude Desktop to generate images, videos, music, and audio using 600+ models.

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

fal-mcp-server · Use cases

  • Generate images from text prompts using various AI models like Flux, SDXL
  • Create videos from text prompts or animate existing images
  • Generate music or audio content with AI models like MusicGen or Bark
  • Edit and enhance images with tools like background removal, upscaling, and inpainting

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"]
    }
  }
}

fal-mcp-server · Install

Installation

Option 1: Using uvx (Recommended)

# Run the MCP server directly
uvx --from fal-mcp-server fal-mcp

Option 2: Using Docker

docker run -d \
  --name fal-mcp \
  -e FAL_KEY=your-api-key \
  -p 8080:8080 \
  ghcr.io/raveenb/fal-mcp-server:latest

Option 3: From PyPI

pip install fal-mcp-server

Claude Desktop Configuration

{
  "mcpServers": {
    "fal-ai": {
      "command": "uvx",
      "args": ["--from", "fal-mcp-server", "fal-mcp"],
      "env": {
        "FAL_KEY": "your-fal-api-key"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.