Skip to main content
Glama

Crawl4AI+SearXNG MCP Server

by ToKiDoO
docker-compose.yml2.36 kB
version: "3.7" services: # MCP Crawl4AI Server mcp-crawl4ai: build: context: . dockerfile: Dockerfile container_name: mcp-crawl4ai restart: unless-stopped environment: - TRANSPORT=${TRANSPORT:-sse} - HOST=${HOST:-0.0.0.0} - PORT=${PORT:-8051} - SEARXNG_URL=${SEARXNG_URL:-http://searxng:8080} env_file: - .env ports: - "8051:8051" depends_on: - searxng networks: - searxng volumes: - ./data:/app/data - ./logs:/app/logs logging: driver: "json-file" options: max-size: "1m" max-file: "1" # Reverse Proxy (Caddy) caddy: container_name: caddy image: docker.io/library/caddy:2-alpine network_mode: host restart: unless-stopped environment: - SEARXNG_HOSTNAME=${SEARXNG_HOSTNAME:-http://localhost} - SEARXNG_TLS=${SEARXNG_TLS:-internal} volumes: - ./Caddyfile:/etc/caddy/Caddyfile:ro - caddy-data:/data:rw - caddy-config:/config:rw cap_drop: - ALL cap_add: - NET_BIND_SERVICE logging: driver: "json-file" options: max-size: "1m" max-file: "1" # Redis Alternative - Valkey valkey: container_name: valkey image: docker.io/valkey/valkey:8-alpine command: valkey-server --save 30 1 --loglevel warning restart: unless-stopped networks: - searxng volumes: - valkey-data:/data cap_drop: - ALL cap_add: - SETGID - SETUID - DAC_OVERRIDE logging: driver: "json-file" options: max-size: "1m" max-file: "1" # SearXNG Search Engine searxng: container_name: searxng image: docker.io/searxng/searxng:latest restart: unless-stopped networks: - searxng ports: - "127.0.0.1:8080:8080" volumes: - ./searxng:/etc/searxng:rw - searxng-data:/var/cache/searxng:rw environment: - SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/ cap_drop: - ALL cap_add: - CHOWN - SETGID - SETUID logging: driver: "json-file" options: max-size: "1m" max-file: "1" depends_on: - valkey networks: searxng: driver: bridge volumes: caddy-data: caddy-config: valkey-data: searxng-data:

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/ToKiDoO/crawl4ai-rag-mcp'

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