MCP Catalogs
Home

mcp-server-chart vs uberall-mcp-server

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

mcp-server-chart
by antvis
uberall-mcp-server
by uberall
Stars★ 4,068★ 1
30d uses10,239
Score8434
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityDeveloper ToolsCommunication
LanguageTypeScriptKotlin
Last committhis month11 mo ago

mcp-server-chart · Summary

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

uberall-mcp-server · Summary

Uberall MCP server provides business listing and social media management tools through AI assistants.

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

uberall-mcp-server · Use cases

  • Find and manage business listings through natural language queries
  • Create and schedule social media posts across multiple platforms
  • Monitor and filter existing social posts by location, status, and date

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

uberall-mcp-server · Install

Installation Options

  1. **Download Pre-built JAR**

```bash # Download the latest release curl -L -o uberall-mcp-server.jar https://github.com/uberall/uberall-mcp-server/releases/latest/download/uberall-mcp-server.jar

# Set your credentials export UBERALL_URL="https://sandbox.uberall.com" export UBERALL_ACCESS_TOKEN="your_access_token_here"

# Run the server java -jar uberall-mcp-server.jar ```

  1. **Use Docker**

``bash export UBERALL_URL="https://sandbox.uberall.com" export UBERALL_ACCESS_TOKEN="your_access_token_here" docker run --rm -i -e UBERALL_ACCESS_TOKEN -e UBERALL_URL uberall/uberall-mcp-server:latest ``

  1. **Build from Source**

```bash git clone https://github.com/uberall/uberall-mcp-server.git cd uberall-mcp-server ./gradlew shadowJar

export UBERALL_URL="https://sandbox.uberall.com" export UBERALL_ACCESS_TOKEN="your_access_token_here" java -jar build/libs/uberall-mcp-server.jar ```

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "uberall-mcp-server": {
      "command": ["java", "-jar", "/path/to/uberall-mcp-server.jar"],
      "env": {
        "UBERALL_ACCESS_TOKEN": "your_access_token_here",
        "UBERALL_URL": "https://sandbox.uberall.com"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.