- Explore MCP Servers
- beatport-mcp
Beatport Mcp
What is Beatport Mcp
beatport-mcp is a Model Context Protocol (MCP) server that provides access to the Beatport API for searching artists. It is designed for use with AI assistants or MCP-compatible clients.
Use cases
Use cases include AI assistants providing music recommendations, applications that display artist information, and services that integrate music data for enhanced user experiences.
How to use
To use beatport-mcp, connect to the server at the /mcp/sse
endpoint and utilize the search_beatport_artists
tool to query the Beatport API for artist information.
Key features
Key features include artist search functionality by name, MCP-compliant endpoints for AI agent access, and cloud deployment capabilities via Railway.app.
Where to use
beatport-mcp can be used in applications that require music-related data, particularly in AI assistants, music discovery platforms, and any service needing artist information from Beatport.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Beatport Mcp
beatport-mcp is a Model Context Protocol (MCP) server that provides access to the Beatport API for searching artists. It is designed for use with AI assistants or MCP-compatible clients.
Use cases
Use cases include AI assistants providing music recommendations, applications that display artist information, and services that integrate music data for enhanced user experiences.
How to use
To use beatport-mcp, connect to the server at the /mcp/sse
endpoint and utilize the search_beatport_artists
tool to query the Beatport API for artist information.
Key features
Key features include artist search functionality by name, MCP-compliant endpoints for AI agent access, and cloud deployment capabilities via Railway.app.
Where to use
beatport-mcp can be used in applications that require music-related data, particularly in AI assistants, music discovery platforms, and any service needing artist information from Beatport.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Beatport MCP API
A Model Context Protocol (MCP) server that provides access to the Beatport API for searching artists. This service can be used with AI assistants or MCP-compatible clients.
Features
- Provides a tool to search for artists on Beatport by name
- Exposes MCP-compliant endpoints for AI agent access
- Designed for cloud deployment (Railway.app)
Endpoints
/
or/info
- Server information/health
- Health check endpoint/mcp/sse
- MCP SSE connection endpoint/mcp/messages/
- MCP messages endpoint
Deployment to Railway.app
Prerequisites
- Create a Railway.app account
- Install the Railway CLI (optional)
Deployment Steps
Using the Railway.app Dashboard
- Create a new project in the Railway dashboard
- Connect your GitHub repository or use the “Deploy from GitHub” option
- Point to your repository containing this code
- Railway will automatically detect the Procfile and deploy the application
- Environment variables will be automatically set, including the PORT
Using the Railway CLI
# Login to Railway
railway login
# Initialize a new project (if not done already)
railway init
# Deploy the application
railway up
Environment Variables
PORT
- Automatically set by Railway.app
Local Development
# Install dependencies
pip install -r requirements.txt
# Run the server
python mcp_web_app.py
Using with AI Assistants
This MCP server allows AI assistants to search for artists on Beatport. The assistant can:
- Connect to the MCP server at the
/mcp/sse
endpoint - Use the
search_beatport_artists
tool to query the Beatport API - Get structured data about artists including names, IDs, and URLs
API Example
Tool call format:
{
"jsonrpc": "2.0",
"method": "tool/call",
"params": {
"name": "search_beatport_artists",
"arguments": {
"artist_name": "Hernan Cattaneo"
}
},
"id": "message-id"
}
Response will include artist data in the same format as the Beatport API.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.