Skip to main content
Glama

Filesystem MCP Server

by njbrake
Dockerfile567 B
# Multi-stage build for filesystem-mcp-server FROM python:3.12-slim AS builder WORKDIR /build RUN pip install --no-cache-dir uv COPY pyproject.toml .python-version ./ COPY src ./src RUN uv venv && \ uv pip install --no-cache -e . FROM python:3.12-slim WORKDIR /app COPY --from=builder /build/.venv /app/.venv COPY --from=builder /build/src /app/src COPY --from=builder /build/pyproject.toml /app/pyproject.toml ENV PATH="/app/.venv/bin:$PATH" EXPOSE 8123 VOLUME ["/data"] ENTRYPOINT ["filesystem-mcp"] CMD ["--allowed-root", "/data", "--port", "8123"]

Latest Blog Posts

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/njbrake/filesystem-mcp-server'

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