We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/peijun1700/bluemouse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•620 B
# Dockerfile for BlueMouse MCP Server
# Used by Smithery.ai for automatic containerization
# Use a slim Python image
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy requirement files first for better caching
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Set environment variables
ENV PYTHONUNBUFFERED=1
# Expose port (if running in SSE mode, though StdIO is default)
EXPOSE 8000
# Default command to run the MCP server
# Smithery uses this as the entry point
CMD ["python", "server.py", "--sse"]