MCP Catalogs
Home

mcp-server-chart vs mcp-spotify-player

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

mcp-server-chart
by antvis
mcp-spotify-player
by vsaez
Stars★ 4,068★ 19
30d uses10,239
Score8440
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
MediaAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis month8 mo ago

mcp-server-chart · Summary

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

mcp-spotify-player · Summary

An MCP server that integrates Spotify control with AI assistants for natural music commands.

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

mcp-spotify-player · Use cases

  • Controlling Spotify playback through AI assistants like Claude or Cursor
  • Creating and managing playlists using natural language commands
  • Searching for music and artists with AI assistance

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

mcp-spotify-player · Install

Installation

  1. Clone the repository:
git clone <repository-url>
cd mcp-spotify-player
  1. Install the package:
pip install .
  1. Set up environment variables:
cp env.example .env

Edit the .env file with your Spotify credentials.

  1. Configure Claude Desktop:

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "spotify-player": {
      "command": "/path/to/python",
      "args": [
        "-m",
        "mcp_spotify_player"
      ],
      "cwd": "/path/to/cloned/repo/mcp-spotify-player",
      "env": {
        "SPOTIFY_CLIENT_ID": "your_client_id",
        "SPOTIFY_CLIENT_SECRET": "your_client_secret",
        "SPOTIFY_REDIRECT_URI": "http://127.0.0.1:8000/auth/callback"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.