Prerequisites
- Latest web browser (Google Chrome, Mozilla Firefox, Apple Safari, or Microsoft Edge).
- An Agent Platform account - sign up for free at your region-specific URL below.
Platform Access and Allowlist of IPs
Agent Platform sends requests to a fixed set of IP addresses. If your organization applies IP restrictions, then add the following IPs to your allowlist to permit the platform traffic. The platform is available in the following regions at the listed URLs.| Region | Region-specific URL | Allowlist IPs |
|---|---|---|
| USA | agents.kore.ai | • 172.173.109.141 • 172.212.188.206 • 172.202.57.107 • 20.9.69.249 • 20.12.238.143 • 52.173.108.174 • 104.43.208.181 • 130.131.217.68 • 135.119.76.33 |
| Germany | de-agents.kore.ai | • 3.65.5.141 |
| Japan | jp-agents.kore.ai | • 18.180.133.211 |
| EU (London) | uk-agents.kore.ai | • 3.9.151.173 |
| United Arab Emirates | uae-agents.kore.ai | • 20.74.153.122 • 20.74.173.252 |
| India | ind-agents.kore.ai | • 135.235.170.165 |
Ways to Build on the Platform
The platform supports three paths depending on your team’s skills and workflow:| Approach | What It Is | Best For |
|---|---|---|
| Arch AI | A built-in multi-agent system that generates blueprints, authors ABL, runs tests, and continuously optimizes. | Teams who want AI to drive the full agent lifecycle. |
| Agent Studio + DSL | A browser-based IDE with a visual form editor and Monaco-based ABL code editor that stay in two-way sync. | Builders who prefer visual configuration or direct ABL authoring with full control. |
| Programmable Interface | REST APIs, MCP, SDK, Lambda, and A2A integrations to build, deploy, and manage agents from code. | Developers integrating agents into CI/CD pipelines or external systems. |
Setup Guide
Set up your first multi-agent system in four phases:Phase 1: Access Studio
Sign up and log in Access the platform login page and create your account. After verifying your email, you land in Studio - the browser-based IDE where you build, test, and manage your agents. Create your first project Click New Project from the Studio dashboard. Give it a name like “My First Agents” and select a workspace. Projects organize your agents, supervisors, tools, and knowledge sources in one place.Phase 2: Build your First Agent
Inside your project, click New Agent. Open the ABL editor and paste this definition:- Uses an LLM to understand customer questions.
- Searches a knowledge base for answers.
- Responds with sourced information.
- Has clear boundaries on what it can and cannot do.
Phase 3: Test your Agent
Open the Test panel on the right side of Studio and send a message:Phase 4: Add a Supervisor
Create a new Supervisor in your project and paste this definition:What Have You Built
In a few minutes, you created:- An agent that understands natural language, retrieves knowledge, and enforces boundaries.
- A supervisor that routes messages to the right specialist.
- Observable traces for every execution step, visible right in Studio.
Next Step
- Your first agent tutorial - Build a complete agent with tools, knowledge, and guardrails.