Skip to main content
Glama
ApoorvBrooklyn

PM Counter Monitoring MCP Server

Dockerfile777 B
FROM python:3.11-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ postgresql-client \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY requirements.txt . # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Copy and set up entrypoint script COPY docker-entrypoint.sh /usr/local/bin/ RUN chmod +x /usr/local/bin/docker-entrypoint.sh # Create directories for downloaded files RUN mkdir -p /app/downloaded_files # Expose ports EXPOSE 8000 8001 8501 # Set entrypoint ENTRYPOINT ["docker-entrypoint.sh"] # Default command (can be overridden in docker-compose) CMD ["python", "api_server.py"]

Latest Blog Posts

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/ApoorvBrooklyn/Networking-MCP'

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