We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gordo-v1su4/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-compose.yaml•1.13 KiB
services:
mcp-server-nocodb:
image: gordov1su4/mcp-server-nocodb:1.2.0
container_name: mcp-server-nocodb
restart: unless-stopped
environment:
- PORT=3001
- NOCODB_URL=https://nocodb.v1su4.com
- NOCODB_API_TOKEN=${NOCODB_API_TOKEN}
- PYTHONUNBUFFERED=1
ports:
- "3001:3001"
healthcheck:
disable: true
# For Coolify deployment:
# 1. Set NOCODB_API_TOKEN environment variable in Coolify - hardcode if error 503
# 2. Optionally set NOCODB_URL if different from default
# 3. The service will be available on port 3001
# 4. Health check disabled to prevent 406 responses
# 5. No custom networks - uses Docker's default networking
# NOTE: MinIO S3 Configuration
# The MinIO S3 storage configuration (NC_S3_*) should be added to your NocoDB service,
# NOT to this MCP server service. This MCP server only needs:
# - NOCODB_URL (to connect to NocoDB)
# - NOCODB_API_TOKEN (to authenticate)
#
# To configure MinIO S3 for NocoDB:
# 1. Go to your NocoDB service in Coolify
# 2. Add MinIO environment variables (see MINIO_S3_CONFIGURATION.md)
# 3. See docker-compose.nocodb.example.yaml for reference