Skip to main content
Glama

Airtable MCP Server

by AM1010101
MIT License
2,121
Dockerfile881 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Use a Node.js image FROM node:18-alpine AS builder # Set working directory WORKDIR /app # Copy package.json and package-lock.json to the working directory COPY package.json package-lock.json ./ # Install project dependencies RUN npm install # Copy the entire project directory COPY . . # Build the project RUN npm run build # Start a new stage for the final image FROM node:18-alpine AS release # Set working directory WORKDIR /app # Copy package files COPY --from=builder /app/package.json /app/package-lock.json ./ # Install production dependencies RUN npm ci --omit=dev # Copy the build files from the previous stage COPY --from=builder /app/dist ./dist # Expose the port the server runs on EXPOSE 8080 # Set the entry point to run the server ENTRYPOINT ["node", "dist/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/AM1010101/airtable-mcp-sse'

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