time vs mcp-spotify-player
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-spotify-player by vsaez | |
|---|---|---|
| Stars | ★ 85,748 | ★ 19 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | MediaAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 8 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-spotify-player · Summary
An MCP server that integrates Spotify control with AI assistants for natural music commands.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}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"
}
}
}
}