We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gesteves/domestique'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Fly.io configuration for Domestique MCP Server
# See https://fly.io/docs/reference/configuration/ for configuration options
app = "domestique"
primary_region = "iad"
[build]
dockerfile = "Dockerfile"
[env]
PORT = "3000"
NODE_ENV = "production"
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = "stop"
auto_start_machines = true
min_machines_running = 1
processes = ["app"]
[http_service.concurrency]
type = "connections"
hard_limit = 100
soft_limit = 80
[[vm]]
memory = "512mb"
cpu_kind = "shared"
cpus = 1
[checks]
[checks.health]
port = 3000
type = "http"
interval = "30s"
timeout = "5s"
grace_period = "10s"
method = "GET"
path = "/health"