Skip to main content
Glama

BigQuery MCP Server

by takuya0206
FROM oven/bun:latest as builder WORKDIR /app # Copy package files COPY package.json bun.lock ./ # Install dependencies RUN bun install --frozen-lockfile # Copy source code COPY . . # Build the application RUN bun run build # Create a smaller runtime image FROM oven/bun:latest WORKDIR /app # Copy the built application from the builder stage COPY --from=builder /app/dist/bigquery-mcp-server /app/bigquery-mcp-server COPY --from=builder /app/package.json /app/package.json # Make the binary executable RUN chmod +x /app/bigquery-mcp-server # Set the entrypoint ENTRYPOINT ["/app/bigquery-mcp-server"] # Default command (will be appended to ENTRYPOINT) CMD ["--help"]

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/takuya0206/bigquery-mcp-server'

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