MCP Neo4j Knowledge Graph Memory Server

by JovanHsu
Verified
version: '3' services: neo4j: image: neo4j:5.18.0 container_name: ai-info-neo4j restart: always ports: - "7474:7474" # HTTP - "7687:7687" # Bolt environment: - NEO4J_AUTH=neo4j/password # 用户名/密码 - NEO4J_apoc_export_file_enabled=true - NEO4J_apoc_import_file_enabled=true - NEO4J_apoc_import_file_use__neo4j__config=true - NEO4J_PLUGINS=["apoc"] # 启用APOC插件 - NEO4J_dbms_security_procedures_unrestricted=apoc.* - NEO4J_dbms_security_procedures_allowlist=apoc.* volumes: - neo4j_data:/data - neo4j_logs:/logs - neo4j_import:/var/lib/neo4j/import - neo4j_plugins:/plugins healthcheck: test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7474" ] interval: 10s timeout: 10s retries: 5 start_period: 40s