We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mohelhamdani/financial-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•439 B
FROM node:20-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies (including devDependencies to build)
# Use --ignore-scripts to prevent 'prepare' script (npm run build) from running before source is copied
RUN npm install --ignore-scripts
# Copy source code
COPY . .
# Build the project
RUN npm run build
# Expose port
EXPOSE 3000
# Start server in HTTP mode
CMD ["node", "dist/index.js", "serve"]