We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SNYCFIRE-CORE/letta-mcp-server-railway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code and project config
COPY src/ src/
COPY pyproject.toml .
# Install the package in editable mode
RUN pip install -e .
# Expose the port
EXPOSE 8000
# Run the server
CMD ["python", "-m", "letta_mcp_server_railway.server"]