We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mz462/mcpPaylocity'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.13-slim
WORKDIR /app
# Install build dependencies
RUN apt-get update && apt-get install -y --no-install-recommends gcc
# Copy project files
COPY . .
# Install the package using pip
RUN pip install --upgrade pip \
&& pip install --no-cache-dir hatchling \
&& pip install --no-cache-dir .
# MCP servers typically use stdio for communication
CMD ["mcppaylocity"]