Skip to main content
Glama

FastMail MCP Server

by gr3enarr0w
Dockerfile.http952 B
# FastMail MCP Server HTTP Dockerfile # HTTP version for Claude Desktop compatibility FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ RUN npm ci --only=production && npm cache clean --force FROM node:20-alpine AS production RUN apk add --no-cache dumb-init curl RUN addgroup -g 1001 -S mcp && \ adduser -S mcp -u 1001 WORKDIR /app COPY --from=builder /app/node_modules ./node_modules COPY --chown=mcp:mcp package*.json ./ COPY --chown=mcp:mcp src/ ./src/ # Create HTTP entrypoint COPY --chown=mcp:mcp http-entrypoint.sh /usr/local/bin/ RUN chmod +x /usr/local/bin/http-entrypoint.sh RUN mkdir -p /app/data && chown -R mcp:mcp /app/data USER mcp EXPOSE 3000 HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD curl -f http://localhost:3000/health || exit 1 ENV NODE_ENV=production ENV MCP_TRANSPORT=http ENV PORT=3000 ENTRYPOINT ["dumb-init", "--"] CMD ["/usr/local/bin/http-entrypoint.sh"]

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/gr3enarr0w/fastmail-mcp-server'

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