Skip to main content
Glama

Meilisearch MCP Server

by devlimelabs
FROM node:20-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 # Production stage FROM node:20-alpine WORKDIR /app # Copy package files and install production dependencies only COPY package*.json ./ RUN npm ci --omit=dev # Copy built application from builder stage COPY --from=builder /app/dist ./dist # Copy .env.example file COPY .env.example .env.example # Set environment variables ENV NODE_ENV=production # Expose port if needed (for health checks, etc.) # EXPOSE 8080 # Start 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/devlimelabs/meilisearch-ts-mcp'

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