Skip to main content
Glama

Kirha Crypto Smithery Gateway

Official
by kirha-ai
Dockerfile832 B
# Build stage FROM node:20-alpine AS builder WORKDIR /app # Copy package files COPY package*.json ./ # Install all dependencies (including dev dependencies for build) RUN npm install # Copy source files COPY . . # Build the TypeScript code RUN npm run build # Production stage FROM node:20-alpine WORKDIR /app # Copy package files COPY package.json ./ # Install only production dependencies RUN npm install --omit=dev && npm cache clean --force # Copy built files from builder stage COPY --from=builder /app/dist ./dist # Copy config.json COPY config.json ./ # Create non-root user RUN addgroup -g 1001 -S nodejs && \ adduser -S nodejs -u 1001 # Change ownership RUN chown -R nodejs:nodejs /app # Switch to non-root user USER nodejs # The server will be started by Smithery's runtime CMD ["node", "dist/start.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/kirha-ai/kirha-crypto-smithery-gateway'

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