Hosted Version (Recommended)
Get started in under 5 minutes with no infrastructure setup.Sign up at app.superglue.cloud
Or book a demo to talk to our team first.
Build a tool
Click “Give me an example” to see sample tools, or describe what you need in the agent interface:
The agent will help you set up your systems and tests tools automatically.

Self-Hosted
Deploy on your infrastructure for complete control and customizability.Quick Start
Prerequisites: Docker and an LLM API key (OpenAI, Anthropic, or Gemini)Create .env file
Local Development
.env.example in root to .env and populate the required fields, then:
Production Setup
For production deployments, add PostgreSQL and enable credential encryption:Environment Variables
| Variable | Required | Description |
|---|---|---|
AUTH_TOKEN | Yes | Secret for API authentication |
DATASTORE_TYPE | Yes | memory, file, or postgres (postgres requires additional config) |
LLM_PROVIDER | Yes | OPENAI, ANTHROPIC, or GEMINI (default: OPENAI) |
LLM_FALLBACK_PROVIDER | No | Optional fallback provider (OPENAI, ANTHROPIC, GEMINI) |
OPENAI_API_KEY | If active | OpenAI API key |
ANTHROPIC_API_KEY | If active | Anthropic API key |
GEMINI_API_KEY | If active | Gemini API key |
MASTER_ENCRYPTION_KEY | No | Encrypt stored credentials (generate: openssl rand -hex 32) |
START_SCHEDULER_SERVER | No | Enable scheduled tools (default: false) |