We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/malvernbright/odoo-claude-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•522 B
# Use Node.js LTS version
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY tsconfig.json ./
# Install dependencies (without running prepare script)
RUN npm ci --ignore-scripts
# Copy source code
COPY src ./src
# Build TypeScript
RUN npm run build
# Expose port (not strictly necessary for MCP stdio, but useful for future HTTP endpoints)
EXPOSE 3000
# Set environment to production
ENV NODE_ENV=production
# Run the MCP server
CMD ["node", "build/index.js"]