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 uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 8 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-chartFor 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
- Clone the repository:
git clone <repository-url>
cd mcp-spotify-player- Install the package:
pip install .- Set up environment variables:
cp env.example .envEdit the .env file with your Spotify credentials.
- 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"
}
}
}
}