Skip to main content
Glama

mcp-youtube-transcript

Dockerfile882 B
# Stage 1: Build the application FROM node:18-alpine AS builder # Set working directory WORKDIR /app # Copy package files COPY package.json package-lock.json* ./ # Install dependencies RUN npm ci # Copy the rest of the application COPY . . # Build the application RUN npm run build # Stage 2: Create the production image FROM node:18-alpine AS production # Create non-root user RUN addgroup -S appgroup && adduser -S appuser -G appgroup # Set working directory WORKDIR /app # Copy the built files from the builder stage COPY --from=builder /app/dist /app/dist COPY --from=builder /app/package.json /app/package-lock.json* ./ # Install production dependencies only RUN npm ci --only=production # Change ownership to non-root user RUN chown -R appuser:appgroup /app # Switch to non-root user USER appuser # Specify the default command ENTRYPOINT ["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/sinco-lab/mcp-youtube-transcript'

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