Skip to main content
Glama

NocoDB MCP Server

by gordo-v1su4
Dockerfileโ€ข878 B
# Simple Dockerfile for single-file MCP server FROM python:3.12-slim # Set working directory WORKDIR /app # Set environment variables ENV PYTHONPATH=/app ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 ENV PORT=3001 # Install system dependencies RUN apt-get update && apt-get install -y \ curl \ && rm -rf /var/lib/apt/lists/* # Install Python dependencies directly RUN pip install --no-cache-dir \ mcp \ aiohttp \ python-dotenv # Copy the main server file COPY nocodb_mcp_server.py . COPY .env* ./ # Create non-root user RUN groupadd -r appuser && useradd -r -g appuser appuser RUN chown -R appuser:appuser /app USER appuser # Expose port EXPOSE 3001 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD curl -f http://localhost:3001/ || exit 1 # Run the server CMD ["python", "nocodb_mcp_server.py"]

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/gordo-v1su4/mcp-server'

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