We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/akshaykylas94/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•528 B
# Kylas CRM MCP Server - Lead Only
# MCP Registry: set io.modelcontextprotocol.server.name to your server name (e.g. io.github.USERNAME/kylas-crm)
FROM python:3.11-slim
LABEL io.modelcontextprotocol.server.name="io.github.akshaykylas94/kylas-crm"
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Application
COPY main.py .
# MCP servers typically run in stdio mode
ENV PYTHONUNBUFFERED=1
# Run the MCP server (stdio transport)
CMD ["python", "-u", "main.py"]