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
compose.upgrade.yml•510 B
services:
pg-upgrade:
image: tianon/postgres-upgrade:17-to-18
environment:
PGDATAOLD: /var/lib/postgresql/OLD # Old v17 data
PGDATANEW: /var/lib/postgresql/18/docker # New v18 (major-version-specific path)
POSTGRES_INITDB_ARGS: "--no-data-checksums" # Disable checksums to match old cluster
volumes:
- pgdata:/var/lib/postgresql/OLD # Old v17 volume
- pgdata18:/var/lib/postgresql # New v18 volume (mount at root)
networks: [mcpnet]