We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gvaibhav/TAM-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Redis Configuration for TAM MCP Server
# This file provides optimized Redis settings for production use
# Network
bind 127.0.0.1
port 6379
tcp-backlog 511
tcp-keepalive 300
# General
daemonize no
supervised auto
pidfile /var/run/redis_6379.pid
loglevel notice
logfile ""
databases 16
# Security
# requirepass will be set via command line in docker-compose
# Memory Management
maxmemory 512mb
maxmemory-policy allkeys-lru
maxmemory-samples 5
# Lazy Freeing
lazyfree-lazy-eviction yes
lazyfree-lazy-expire yes
lazyfree-lazy-server-del yes
# Persistence
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir /data
# Append Only File
appendonly yes
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble yes
# Lua Scripting
lua-time-limit 5000
# Slow Log
slowlog-log-slower-than 10000
slowlog-max-len 128
# Latency Monitor
latency-monitor-threshold 100
# Event Notification
notify-keyspace-events Ex
# Client Output Buffer Limits
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit replica 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
# Client Query Buffer Limit
client-query-buffer-limit 1gb
# Protocol Max Bulk Length
proto-max-bulk-len 512mb
# Hash Configuration
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
# List Configuration
list-max-ziplist-size -2
list-compress-depth 0
# Set Configuration
set-max-intset-entries 512
# Sorted Set Configuration
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
# HyperLogLog Configuration
hll-sparse-max-bytes 3000
# Streams Configuration
stream-node-max-bytes 4096
stream-node-max-entries 100
# Active Rehashing
activerehashing yes
# Client Timeout
timeout 0
# TCP Keepalive
tcp-keepalive 300
# Disable Dangerous Commands in Production
rename-command FLUSHDB ""
rename-command FLUSHALL ""
rename-command DEBUG ""
rename-command CONFIG ""
rename-command SHUTDOWN SHUTDOWN_tam_mcp_server
# Modules (if needed)
# loadmodule /path/to/module.so