Skip to main content
Glama

Searchspring Integration Assistant

by yangjeep
Dockerfile792 B
# Use the official Node.js runtime as a parent image FROM node:18-alpine # Set the working directory in the container WORKDIR /app # Copy package.json and package-lock.json (if available) COPY package*.json ./ # Install dependencies RUN npm ci --only=production # Copy the rest of the application code COPY . . # Build the TypeScript application RUN npm run build # Create a non-root user to run the application RUN addgroup -g 1001 -S nodejs && \ adduser -S nodejs -u 1001 # Change ownership of the app directory to the nodejs user RUN chown -R nodejs:nodejs /app # Switch to the non-root user USER nodejs # Expose the port the app runs on (if needed for health checks) EXPOSE 3000 # Set environment variables ENV NODE_ENV=production # Run the application CMD ["npm", "start"]

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/yangjeep/playground-searchspring-api-assist-mcp'

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