Skip to main content
Glama

M/M/1 Queue Simulation Server

by kiyoung8
Dockerfile630 B
# Use Python 3.11 slim image FROM python:3.11-slim # Set working directory WORKDIR /app # Copy source code COPY pyproject.toml LICENSE.md README.md ./ COPY src/ ./src/ # Install Python build tools and pip RUN pip install --no-cache-dir --upgrade pip setuptools wheel build # Build and install the package with all dependencies RUN pip install --no-cache-dir . # Expose HTTP port for MCP server (Smithery uses 8081) EXPOSE 8081 # Set environment variable for HTTP transport ENV MCP_TRANSPORT=http ENV PORT=8081 ENV HOST=0.0.0.0 # Set the entrypoint to run the MCP server ENTRYPOINT ["python", "-m", "mcp_server_mm1.server"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kiyoung8/Simulation_by_SimPy'

If you have feedback or need assistance with the MCP directory API, please join our Discord server