Skip to content

Server Overview

AgentCircuits.Server is the production host for the platform.

The host mounts:

  • the admin portal at /portal
  • the end-user chat UI at /chat
  • REST APIs under /portal/api/*
  • SignalR hubs under /portal/hubs/*
  • health endpoints under /health, /health/live, and /health/ready

The server:

  1. loads appsettings*.json from the executable directory
  2. applies environment variables and command-line overrides
  3. selects file, in-memory, or SQL storage
  4. configures authentication
  5. mounts the portal and UI using the configured base paths

The default config shipped in source uses:

  • http://127.0.0.1:8080
  • portal base path /portal
  • UI base path /chat
  • UI API and hub base path /portal
  • authentication required
  • A2A and channels enabled

Use the following pages for the operational surface: