Skip to main content
Glama

AbuseIPDB MCP Server

by n3r0-b1n4ry
MIT License
  • Linux
  • Apple
Dockerfile755 B
# Use Python 3.11 alpine image for smaller size FROM python:3.11-alpine # Set working directory WORKDIR /app # Set environment variables ENV PYTHONUNBUFFERED=1 ENV PYTHONDONTWRITEBYTECODE=1 # Copy requirements first for better caching COPY requirements.txt . # Install Python dependencies, no cache, no upgrade pip, and install requirements RUN pip install --no-cache-dir -r requirements.txt # Copy source code COPY src/ ./src/ # Create non-root user for security (Alpine/BusyBox syntax) RUN addgroup -g 1001 -S python && \ adduser -u 1001 -S -G python -h /app -s /bin/sh mcp # Change ownership of the app directory RUN chown -R mcp:python /app # Switch to non-root user USER mcp # Start the Python MCP server CMD ["python", "src/server.py"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/n3r0-b1n4ry/mcp-abuseipdb'

If you have feedback or need assistance with the MCP directory API, please join our Discord server