Skip to main content
Glama

Firelinks MCP Server

by djeknet
Dockerfile743 B
# Use official Node.js image FROM node:20-alpine # Create user to run the application (security) RUN addgroup -g 1001 -S nodejs && adduser -S nodejs -u 1001 # Set working directory WORKDIR /app # Copy package.json and package-lock.json COPY package*.json ./ # Install only production dependencies RUN npm ci --only=production && npm cache clean --force # Copy source code COPY --chown=nodejs:nodejs . . # Switch to non-privileged user USER nodejs # Expose port EXPOSE 3000 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD node -e "require('http').get('https://mcp.firelinks.cc/health', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})" # Start application CMD ["node", "src/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/djeknet/firelinks-mcp'

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