We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CW-Codewalnut/metabase-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•319 B
FROM ghcr.io/astral-sh/uv:debian-slim AS builder
# Set working directory
WORKDIR /app
# Copy project files
COPY . .
# Sync dependencies and compile bytecode
RUN uv sync --compile-bytecode
# Expose port
EXPOSE 3200
# Run the app
CMD ["uv", "run", "src/metabase_mcp_server.py", "--host", "0.0.0.0", "--port", "3200"]