Skip to main content
Glama

mcp-server-firecrawl

by mendableai
MIT License
14,071
3,631
  • Apple
  • Linux
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Use a Node.js image as the base for building the application FROM node:22-alpine AS builder # Set the working directory inside the container WORKDIR /app # Copy package.json and package-lock.json to install dependencies COPY package.json package-lock.json ./ # Install dependencies (ignoring scripts to prevent running the prepare script) RUN npm install --ignore-scripts # Copy the rest of the application source code COPY . . # Build the application using TypeScript RUN npm run build # Use a smaller Node.js image for the final image FROM node:22-slim AS release # Set the working directory inside the container WORKDIR /app # Copy the built application from the builder stage COPY --from=builder /app/dist /app/dist COPY --from=builder /app/package.json /app/package.json COPY --from=builder /app/package-lock.json /app/package-lock.json # Install only production dependencies RUN npm ci --omit=dev --ignore-scripts # Set environment variables for API key and custom API URL if needed # Specify the command to run the application ENTRYPOINT ["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/mendableai/firecrawl-mcp-server'

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