Skip to main content
Glama

Personal RAG MCP Server

by timerickson
Dockerfile596 B
FROM python:3.11-slim WORKDIR /app # Install dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application COPY personal_rag_mcp/ ./personal_rag_mcp/ COPY config/ ./config/ COPY scripts/ ./scripts/ # Environment defaults ENV TRANSPORT=http ENV PORT=8765 ENV QDRANT_URL=http://qdrant:6333 ENV OLLAMA_URL=http://ollama:11434 ENV LITELLM_URL=http://litellm:4000 ENV SQLITE_PATH=/app/data/documents.db # Health check HEALTHCHECK --interval=30s --timeout=3s \ CMD python -c "import sys; sys.exit(0)" CMD ["python", "-m", "personal_rag_mcp.server"]

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/timerickson/personal-rag-mcp'

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