Skip to main content
Glama

MCP GameBoy Server

Dockerfile696 B
# syntax=docker/dockerfile:1 FROM node:lts-alpine # Install build dependencies for canvas RUN apk add --no-cache python3 make g++ cairo-dev pango-dev jpeg-dev giflib-dev # Set working directory WORKDIR /app # Copy package files first for better caching COPY package.json package-lock.json ./ # Install all dependencies (including dev dependencies needed for build) RUN npm ci # Copy source code and ROM files COPY . . # Make sure the ROM directory exists RUN mkdir -p roms # Build TypeScript RUN npm run build # Create .env file with default configuration RUN echo "SERVER_PORT=3001\nROM_PATH=./roms/dangan.gb" > .env # Default command uses stdio transport CMD ["node", "dist/index.js"]

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/mario-andreschak/mcp-gameboy'

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