# BMTC MCP Development Dockerfile
# Configured for development with hot reloading
FROM node:16-alpine
WORKDIR /app
# Install nodemon for hot reloading
RUN npm install -g nodemon
# Install development dependencies
COPY package*.json ./
RUN npm install
# Copy the rest of the application
COPY . .
# Create necessary directories
RUN mkdir -p data/raw data/processed data/gtfs logs
# Expose the port and debugging port
EXPOSE 3000 9229
# Command to run the application in development mode with debugging
CMD ["npm", "run", "dev"]
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/ajeetraina/bengaluru-bmtc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server