We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gorums/music-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•749 B
# Use official Python image
FROM python:3.11-slim
# Set work directory
WORKDIR /app
# Install system dependencies (if needed)
RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the code
COPY . .
# Set environment variables (can be overridden)
ENV MUSIC_ROOT_PATH=/music
ENV CACHE_DURATION_DAYS=30
ENV LOG_LEVEL=INFO
ENV PYTHONPATH=/app
# Create mount point for music collection
RUN mkdir -p /music
# Define volume for external music collection
VOLUME ["/music"]
# Expose no ports (stdio server)
# Default command - run as module with proper package context
CMD ["python", "-m", "main"]