Brave Search MCP Server

by isaacgounton
Verified
FROM node:18-alpine WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm install # Copy source code COPY . . # Build TypeScript RUN npm run build # Expose port for SSE EXPOSE 3001 # Start the server CMD ["npm", "start"]