Skip to main content
Glama

Healthcare MCP Server

Dockerfile828 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config FROM python:3.12-slim WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ gcc \ python3-dev \ curl \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better layer caching COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Make run.py executable RUN chmod +x run.py # Create data directory for database RUN mkdir -p /app/data # Set environment variables ENV DATA_DIR=/app/data ENV CACHE_DB_PATH=/app/data/cache.db ENV USAGE_DB_PATH=/app/data/usage.db # Expose the port the app runs on EXPOSE 8000 # Command to run the application CMD ["python", "run.py", "--http"]

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/Cicatriiz/healthcare-mcp-public'

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