Skip to main content
Glama

Tafa MCP Server

by N3uraX
MIT License
1
  • Apple
  • Linux
Dockerfile735 B
FROM node:18-alpine # Install system dependencies RUN apk add --no-cache \ bash \ zip \ unzip \ tar \ gzip # Set working directory WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm ci --only=production # Copy source code COPY src/ ./src/ COPY config/ ./config/ # Create backup directory RUN mkdir -p /app/.tafa-backups # Make the binary executable RUN chmod +x ./src/index.js # Create a non-root user RUN addgroup -g 1001 -S tafa && \ adduser -S tafa -u 1001 # Set proper permissions RUN chown -R tafa:tafa /app # Switch to non-root user USER tafa # Set default workspace VOLUME ["/workspace"] # Entry point ENTRYPOINT ["node", "src/index.js"] CMD ["/workspace"]

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/N3uraX/tafa-mcp'

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