# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
# Dockerfile for Google Tasks MCP Server
FROM node:lts-alpine AS builder
# set working directory
WORKDIR /app
# copy package manifests
COPY package.json package-lock.json tsconfig.json ./
# install dependencies
RUN npm ci
# copy source files
COPY src ./src
# build the project
RUN npm run build
# production image
FROM node:lts-alpine
WORKDIR /app
# copy built files and dependencies
COPY --from=builder /app/build ./build
COPY --from=builder /app/node_modules ./node_modules
COPY package.json .
# set environment to production
ENV NODE_ENV=production
# default command
CMD ["node", "build/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/arpitbatra123/mcp-googletasks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server