Skip to main content
Glama

FastlyMCP

by Arodoid
Dockerfile689 B
# Use an official Node.js runtime as a parent image FROM node:18 # Set the working directory in the container WORKDIR /app # Copy package.json AND the lock file COPY package*.json ./ # Set NODE_ENV to production - good practice and influences npm ci ENV NODE_ENV=production # Use npm ci for a clean, reproducible install from package-lock.json # --omit=dev is the default for production, but being explicit doesn't hurt RUN npm install --omit=dev # Copy the rest of the application code COPY fastly-mcp.mjs . # No CMD needed here as smithery.yaml will provide the start command # But it's good practice to have a default execution CMD ["node", "fastly-mcp.mjs"]

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/Arodoid/FastlyMCP'

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