We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Platano78/faulkner-db'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
redis.conf•1.2 KiB
# FalkorDB/Redis Persistence Configuration
# Prevents data loss on container restarts
# Data directory
dir /var/lib/falkordb/data
dbfilename dump.rdb
# RDB Snapshots - More aggressive saves
# Save after 60 seconds if at least 1 key changed
# Save after 30 seconds if at least 100 keys changed
save 60 1
save 30 100
# AOF (Append Only File) - Critical for durability!
appendonly yes
appendfilename "appendonly.aof"
appendfsync everysec
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
# Memory management
maxmemory 2gb
maxmemory-policy noeviction
# Logging
loglevel notice
# ===========================================
# SECURITY HARDENING (Added 2026-02-01)
# ===========================================
# Require password - prevents unauthorized connections
requirepass faulkner_kg_2026_secure
# Disable destructive commands - renamed to secret strings
# Even if someone connects and authenticates, FLUSHALL will fail
rename-command FLUSHALL FAULKNER_ADMIN_FLUSH_7x9k2m
rename-command FLUSHDB FAULKNER_ADMIN_FLUSHDB_3p8q1n
rename-command DEBUG FAULKNER_ADMIN_DEBUG_5k2n8p
rename-command CONFIG FAULKNER_ADMIN_CONFIG_9m3x7q
# Note: To manually flush if ever needed, restart with these lines commented out