Skip to main content
Glama

Tribal Knowledge Service

by agentience
Dockerfile710 B
FROM python:3.12-slim WORKDIR /app # Install system dependencies including C++ compiler RUN apt-get update && apt-get install -y \ build-essential \ pkg-config \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* # Install uv RUN pip install uv # Copy application requirements COPY requirements.txt pyproject.toml setup.py /app/ # Copy application code COPY src/ /app/src/ COPY README.md /app/ # Install dependencies and the package itself RUN uv pip install --system -r requirements.txt RUN uv pip install --system -e . # Create volume mount point RUN mkdir -p /data # Expose port EXPOSE 8000 # Run the application CMD ["python", "-m", "learned_knowledge_mcp.app", "--host", "0.0.0.0"]

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/agentience/tribal_mcp_server'

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