We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/isakskogstad/svt-texttv-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•518 B
# Use official Node.js runtime
FROM node:20-alpine AS base
WORKDIR /app
# Install dependencies separately to leverage Docker layer caching.
# Skip lifecycle scripts here so the "prepare" build step doesn't run before sources are copied.
COPY package*.json ./
RUN npm ci --ignore-scripts
# Build the TypeScript sources
COPY . .
RUN npm run build
# Prune dev dependencies to keep the final image small
RUN npm prune --omit=dev
EXPOSE 10000
ENV NODE_ENV=production
ENV PORT=10000
CMD ["node", "dist/http-server.js"]