Skip to main content
Glama

Radius MCP Server

by inite-ai
Dockerfile1.09 kB
# Build stage FROM node:20-alpine AS builder WORKDIR /app # Copy package files COPY package*.json ./ # Install all dependencies (including dev dependencies for building) RUN npm ci # Copy source code COPY . . # Build the TypeScript project RUN npm run build # Production stage FROM node:20-alpine AS production WORKDIR /app # Copy package files COPY package*.json ./ # Install only production dependencies RUN npm ci --omit=dev && npm cache clean --force # Copy built application from builder stage COPY --from=builder /app/build ./build # Create a non-root user RUN addgroup -g 1001 -S nodejs && \ adduser -S radius -u 1001 # Change ownership of the app directory RUN chown -R radius:nodejs /app # Change to non-root user USER radius # Expose the port the app runs on EXPOSE 3000 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD node -e "require('http').get('http://localhost:3000/mcp', (res) => { process.exit(res.statusCode === 200 ? 0 : 1) }).on('error', () => process.exit(1))" # Start 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/inite-ai/radius-mcp'

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