Skip to main content
Glama

Financial Modeling Prep MCP Server

Apache 2.0
26
59
  • Linux
  • Apple
Dockerfile641 B
# ---- Build stage ---- FROM node:lts-alpine AS builder WORKDIR /app COPY package.json package-lock.json ./ RUN npm ci # Copy source and build COPY . . RUN npm run build # ---- Runtime stage ---- FROM node:lts-alpine AS runner WORKDIR /app # Copy manifests and install prod deps as root COPY package.json package-lock.json ./ RUN npm ci --omit=dev # Copy built app; make sure files are owned by the non-root user COPY --from=builder /app/dist ./dist # If base image has the 'node' user (it does in node:lts-alpine): RUN chown -R node:node /app USER node ENV NODE_ENV=production ENV PORT=8080 EXPOSE 8080 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/imbenrabi/Financial-Modeling-Prep-MCP-Server'

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