Skip to main content
Glama

Memos MCP Server

by ShaoRou459
Dockerfile603 B
FROM python:3.11-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ && rm -rf /var/lib/apt/lists/* # Copy requirements first to leverage Docker layer caching COPY requirements.txt . # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Create non-root user for security RUN useradd --create-home --shell /bin/bash mcp && \ chown -R mcp:mcp /app USER mcp # Expose port (if using HTTP transport) EXPOSE 8080 # Default command CMD ["python", "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/ShaoRou459/memos-mcp'

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