Skip to main content
Glama

FastFS-MCP

by aj-geddes
Dockerfile877 B
FROM python:3.12-slim # Set environment variables ENV PYTHONUNBUFFERED=1 # Install essential filesystem tools and Git RUN apt-get update && apt-get install -y \ ripgrep \ grep \ jq \ sed \ gawk \ fd-find \ tree \ coreutils \ zip \ unzip \ gzip \ xz-utils \ git \ && apt-get clean && rm -rf /var/lib/apt/lists/* # Create workspace directory for mounting local filesystem RUN mkdir -p /mnt/workspace # Set up application WORKDIR /app COPY server.py /app/server.py COPY git_tools.py /app/git_tools.py COPY requirements.txt /app/requirements.txt # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Make server.py executable RUN chmod +x /app/server.py # Set working directory to the mounted workspace path WORKDIR /mnt/workspace # Run the server ENTRYPOINT ["python", "/app/server.py"]

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/aj-geddes/fastfs-mcp'

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