Skip to main content
Glama
foxibu

MCP Kali Server

by foxibu
docker-compose.yml996 B
version: '3.8' services: ctf-solver: build: context: . dockerfile: Dockerfile image: foxibu/ctf-solver:latest container_name: ctf-solver ports: - "5000:5000" volumes: # Persist session data - ./sessions:/app/sessions - ./workspaces:/app/workspaces # Mount wordlists (if you have custom ones) - ./wordlists:/wordlists:ro environment: - DEBUG_MODE=0 - FLASK_ENV=production - PYTHONUNBUFFERED=1 restart: unless-stopped networks: - ctf-network healthcheck: test: ["CMD", "curl", "-f", "http://localhost:5000/health"] interval: 30s timeout: 10s retries: 3 start_period: 10s # Resource limits (adjust based on your system) deploy: resources: limits: cpus: '4.0' memory: 8G reservations: cpus: '2.0' memory: 4G networks: ctf-network: driver: bridge volumes: sessions: workspaces:

Latest Blog Posts

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/foxibu/CTF-Solver'

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