We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Rudra-ravi/wikipedia-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM python:3.10-slim
WORKDIR /app
# Copy requirements first for better layer caching
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code and install from local directory (ensures latest features)
COPY . .
RUN pip install --no-cache-dir .
# Set environment variables
ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
EXPOSE 8080
# MCP server uses stdio for communication with MCP Studio
# Default to stdio transport (MCP standard)
ENTRYPOINT ["wikipedia-mcp"]
CMD ["--log-level", "INFO"]
# Label for metadata
LABEL org.opencontainers.image.title="Wikipedia MCP Server"
LABEL org.opencontainers.image.description="Model Context Protocol server for Wikipedia integration"
LABEL org.opencontainers.image.url="https://github.com/rudra-ravi/wikipedia-mcp"
LABEL org.opencontainers.image.source="https://github.com/rudra-ravi/wikipedia-mcp"
LABEL org.opencontainers.image.version="1.6.0"
LABEL org.opencontainers.image.authors="Ravi Kumar <ravikumar@ravikumar-dev.me>"
LABEL org.opencontainers.image.licenses="MIT"