Click one of the system icons (Slack, Stripe, GitHub, etc.) or describe the system you want to connect in the agent chat:The agent will guide you through authentication and configuration.
3
Build and test a tool
Describe what you need — the agent will set up your tool, test it, and let you review before
saving.
4
Execute or schedule
Save the tool, run it on-demand, schedule it, or trigger via webhook.
# ===================# REQUIRED# ===================# Server endpoints (required for web dashboard to connect)API_ENDPOINT=https://your-domain.com:3002SUPERGLUE_APP_URL=https://your-domain.com:3001# Authentication (required)AUTH_TOKEN=your-api-key-that-you-use-to-auth# LLM Provider: OPENAI, ANTHROPIC, GEMINI, BEDROCK, VERTEX, or AZURELLM_PROVIDER=ANTHROPIC# Provide the API key and model for your chosen provider:# ANTHROPIC_API_KEY=sk-ant-xxxxx# ANTHROPIC_MODEL=claude-sonnet-4-5# GEMINI_API_KEY=your-gemini-key# GEMINI_MODEL=gemini-2.5-flash# OPENAI_API_KEY=sk-proj-xxxxx# OPENAI_MODEL=gpt-5.2# PostgreSQL (required)POSTGRES_HOST=your-postgres-hostPOSTGRES_PORT=5432POSTGRES_USERNAME=supergluePOSTGRES_PASSWORD=secure-passwordPOSTGRES_DB=superglue# Uncomment for local/unsecured postgres:# POSTGRES_SSL=false# Credential encryption (HIGHLY recommended)# Generate a strong key: openssl rand -hex 32MASTER_ENCRYPTION_KEY=your-32-byte-encryption-key# ===================# OPTIONAL# ===================# Web search in agent# TAVILY_API_KEY=your-tavily-key# Workflow scheduling (only enable on a single instance)# START_SCHEDULER_SERVER=false
File storage (S3 or MinIO) is required for system documentation — including URL scraping, OpenAPI spec fetching, and file uploads. Without it, tools can still be created and executed, but systems won’t have documentation context for the AI agent.