Skip to main content
Glama

FalkorDB MCP Server

Official
by FalkorDB
Dockerfile642 B
FROM node:18-alpine AS builder WORKDIR /app # Copy package files and install dependencies COPY package*.json ./ RUN npm ci # Copy source code COPY . . # Build the application RUN npm run build # Remove development dependencies RUN npm prune --production # Production image FROM node:18-alpine WORKDIR /app # Set environment variables ENV NODE_ENV=production # Copy built application from builder stage COPY --from=builder /app/dist ./dist COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/package*.json ./ # Expose the port the app runs on EXPOSE 3000 # Run the application 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/FalkorDB/FalkorDB-MCPServer'

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