We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IBM/mcp-context-forge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
init-replication.sh•468 B
#!/bin/bash
# Enable replication connections from any host in the Docker network
# This script runs on PostgreSQL first start via /docker-entrypoint-initdb.d/
set -e
echo "Configuring pg_hba.conf for replication..."
# Add replication entry to pg_hba.conf
# Allow replication connections from any host using scram-sha-256 authentication
echo "host replication all 0.0.0.0/0 scram-sha-256" >> "$PGDATA/pg_hba.conf"
echo "Replication access configured successfully."