We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/davidyannick86/tailscale_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•268 B
FROM python:3.11-slim
WORKDIR /app
# Install dependencies directly to keep image size small
RUN pip install --no-cache-dir "mcp[cli]" httpx uvicorn
# Copy the server code
COPY server.py .
# Expose the port
EXPOSE 8000
# Run the server
CMD ["python", "server.py"]