We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kokevidaurre/looker-admin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•511 B
FROM python:3.11-slim
WORKDIR /app
# Install mcp and looker-sdk packages directly
RUN pip install --no-cache-dir mcp[cli] looker-sdk python-dotenv fastapi "uvicorn[standard]" sse-starlette
# Copy only the necessary files for the server
COPY src/ /app/src/
# Add /app/src to the PYTHONPATH
ENV PYTHONPATH=/app/src
# Default to stdio mode for MCP
ENV MCP_MODE=stdio
ENV PYTHONUNBUFFERED=1
# Run the module directly, assuming /app/src is in PYTHONPATH
ENTRYPOINT ["python", "-m", "looker_mcp.server.looker"]