Skip to main content
Ultra Hub is the cloud control plane for managing MCP security across teams and organizations. It provides centralized visibility, gateway management, and team collaboration.

What Hub Provides

Gateway Registry

Register and monitor Ultra gateways across your organization. Track which gateways are online, their sync status, and health.

Synced Telemetry

Traces and audit events from all gateways are synced to Hub for team-wide visibility. One dashboard for all MCP traffic.

Organization Management

Manage organizations, teams, and workspaces. Invite members and control access.

Workspace Isolation

Group gateways into workspaces for environment separation (e.g., Development, Staging, Production).

Architecture

Developer Machines                     Ultra Hub
┌──────────────┐                  ┌───────────────────┐
│  Ultra GW 1  │──── sync ───────│                   │
│  (Alice)     │                  │   Organizations   │
└──────────────┘                  │       │           │
                                  │     Teams         │
┌──────────────┐                  │       │           │
│  Ultra GW 2  │──── sync ───────│   Workspaces      │
│  (Bob)       │                  │       │           │
└──────────────┘                  │   Gateways        │
                                  │       │           │
┌──────────────┐                  │   Traces/Audit    │
│  Ultra GW 3  │──── sync ───────│                   │
│  (CI/CD)     │                  │   Dashboard       │
└──────────────┘                  └───────────────────┘
Each developer runs Ultra locally as a gateway. Gateways link to a workspace and periodically sync traces and audit events to Hub. The Hub dashboard provides a unified view of all MCP activity.

Getting Started

1

Sign up

Visit hub.ultra.security and create an account.
2

Complete onboarding

The onboarding wizard walks you through creating an organization, team, and workspace.
3

Login from CLI

ultra login
4

Link your gateway

ultra link
5

Start Ultra

ultra start
Traces and audit events will now sync to Hub automatically.

Hub API

Hub exposes a REST API for gateway management:
EndpointDescription
GET /healthHealth check
GET /api/v1/organizationsList organizations
POST /api/v1/organizationsCreate organization
GET /api/v1/organizations/:org/teamsList teams
GET /api/v1/workspacesList workspaces
POST /api/v1/gateways/registerRegister gateway
POST /api/v1/gateways/:id/syncSync gateway data
POST /api/v1/gateways/:id/heartbeatGateway heartbeat

Self-Hosted

Ultra Hub can be self-hosted for organizations that need to keep data on-premises:
ultra hub start --dev  # Local development
Production deployments require PostgreSQL for storage and Ory Kratos/Hydra for authentication. See the Hub command reference for configuration options.