Deploy Clampd on your infra

One Docker Compose command. All services + dashboard + infrastructure. Self-hosted. Your data never leaves your network.

5-Minute Setup

Get a community license, set one env var, run one command.

1

Request early access

We're onboarding design partners. Tell us what you're building and we'll set you up.

Request Early Access

No credit card. No sales call. We'll review and reach out with access.

2

Configure

Docker images coming soon. We're preparing official images for public distribution. Once available, you'll be able to pull and run with a single docker compose up command. Join the community license list above to be notified.

bash COMING SOON
# Download the deployment config curl -fsSL https://releases.clampd.dev/trial/docker-compose.yml -o docker-compose.yml curl -fsSL https://releases.clampd.dev/trial/.env.example -o .env # Set your license key (from email) export CLAMPD_LICENSE_KEY="your-license-key-here" # Or edit .env file nano .env
3

Launch

bash COMING SOON
# Start everything docker compose up -d # Check status docker compose ps # View logs docker compose logs --tail 20
4

Connect your agent

python
import clampd from openai import OpenAI client = clampd.openai(OpenAI(), agent_id="my-agent", secret="ags_...") # All tool calls now go through the security pipeline

Dashboard and gateway URLs are shown in the docker compose ps output.

What Gets Deployed

One Docker Compose file spins up the entire stack: hardened security services, infrastructure, and optional dashboard.

Fully self-hosted. All services run in your infrastructure. Your data never leaves your network. Hardened Docker images with minimal attack surface — non-root, capabilities dropped, read-only filesystem.

ComponentDescription
Runtime Security Layer coreMulti-stage services — authentication, threat detection, policy enforcement, risk scoring, kill switch, and audit logging
Dashboard optionalWeb UI for managing agents, policies, rules, and real-time risk monitoring
Infrastructure auto-provisionedAll required databases, caching, and messaging — included in the Docker Compose file

How Licensing Works

Every Clampd service validates your license key on startup. No phone-home required — your key never leaves your network.

License key is required. Without CLAMPD_LICENSE_KEY, services will not start. Request a community license above.

Community License

LimitValue
Duration90 days from issuance
Agents2 registered agents
IncludesCLI + runtime security layer + SDKs + built-in rules + kill switch + audit trail
DashboardNot included
Rate limitLimited

Enterprise License

LimitValue
DurationAnnual (renewable)
AgentsUnlimited
IncludesEverything in Community + Dashboard UI + RBAC + advanced security features + SSO + compliance + webhooks
Rate limitUnlimited
SupportDedicated + Slack channel

Security

License validation is fully offline — your key never leaves your network. No SaaS dependency, no phone-home. If a license check fails, the service refuses to start. No dev mode. No bypass flags.

Environment Variables

All services read configuration from environment variables. Set them in your .env file or pass directly.

Required (.env)

.env
# License (required — get at https://clampd.dev/setup) CLAMPD_LICENSE_KEY=your_license_key_here # Security (change in production!) JWT_SECRET=change-me-to-a-strong-random-string POSTGRES_PASSWORD=change-me REDIS_PASSWORD=change-me

Full configuration reference is included in the deployment package.

Install the CLI

The CLI connects to your Clampd cluster and validates your license on startup. Pre-built binaries will be available for download once Docker images are published.

bash COMING SOON
# Linux (x86_64) curl -fsSL https://releases.clampd.dev/cli/latest/clampd-linux-amd64 -o clampd chmod +x clampd && sudo mv clampd /usr/local/bin/ # macOS (Apple Silicon) curl -fsSL https://releases.clampd.dev/cli/latest/clampd-darwin-arm64 -o clampd chmod +x clampd && sudo mv clampd /usr/local/bin/ # Configure clampd config init clampd cluster status

Full CLI for operations: Manage agents, policies, risk scores, audit logs, and more. Multi-context support — switch between local, staging, and production like kubectl. Live TUI dashboard for real-time monitoring. See full CLI docs.

Support

Community users: support@clampd.dev
Enterprise customers: Dedicated Slack channel + priority email
Sales: sales@clampd.dev