We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Cryptoptimiste/HaloscanMCPServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•425 B
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy source code
COPY . .
# Build TypeScript
RUN npm run build
# Expose the server port for HTTP/SSE mode
EXPOSE 3000
# Set environment variable with placeholder (override at runtime)
ENV HALOSCAN_API_KEY=""
ENV PORT=3000
# Command to run the application in HTTP mode
CMD ["node", "build/http-server.js"]