StackA2A
infrastructuregoogle-adktypescript

Idun Agent Platform

47

by Idun-Group

🟪 Open source Agent Governance Platform that turns any LangGraph or ADK agent into a production-ready service. Supports: AG-UI, CopilotKit API, OpenTelemetry, MCP, memory, guardrails, SSO, RBAC.

101 starsUpdated 2026-02-22GPL-3.0
Quality Score47/100
Community
45
Freshness
100
Official
30
Skills
10
Protocol
40
🔒 Security
20

Getting Started

1Clone the repository
$ git clone https://github.com/Idun-Group/idun-agent-platform
2Navigate to the project
$ cd idun-agent-platform
3Install dependencies
$ npm install
4Run the agent
$ npm start

Or connect to the hosted endpoint: https://idun-group.github.io/idun-agent-platform/

README

License: GPLv3 CI Python 3.12 PyPI Documentation GitHub Stars Discord LinkedIn GitHub commit activity Ask DeepWiki

🟪 Own your agent stack

Open source, standards-based, lock-in-free, sovereign by design.

The open-source platform that turns any LangGraph or ADK agent into a production-ready service.

Overview

✨ Core Features

  • 🔌 Standardized API: AG-UI and CopilotKit-compatible endpoints
  • 🔍 Observability and tracing: OpenTelemetry, Langfuse, Arize Phoenix, LangSmith, and Google Cloud Trace integrations
  • 🧠 Memory and session persistence: Built-in memory backends: in-memory, SQLite, and PostgreSQL for production
  • 🛡️ Guardrails: Apply input and output policies across agents, including PII detection, prompt-injection defenses, topic restrictions, and allowlists or blocklists (competitors, forbidden terms, etc.)
  • 🧰 MCP tool control: Restrict agents to an approved set of MCP tools
  • 🔐 Access control: SSO-based authentication and authorization to manage who can use each agent

Who is this for?

  • 🧑‍💻 Solo developers: Turn your LangGraph or ADK agent into a production service in minutes, without rebuilding the API, tracing, or memory layer.
  • 🏢 AI, data, and platform teams: Standardize production agents with governance, auditability, and sovereignty on your own infrastructure.

🔌 Integrations



Why Idun exists

Platform Workflow

Teams building an agent strategy are usually forced into a bad choice:

  • Build the whole platform yourself, slow, expensive, hard to hire for, and hard to keep up with.
  • Adopt a ready-made SaaS or cloud platform, faster at first, but you trade away sovereignty, resilience, and you accept vendor lock-in risk.

Meanwhile, LLMs are becoming interchangeable. Your real asset is the agent workflow: your business logic turned into execution. If that workflow lives in someone else’s black box, you lose control of the one thing that matters long term.

The ecosystem is also moving around open source and open standards (MCP, LangGraph, OpenTelemetry, Langfuse, etc.). This is where innovation happens first, proprietary stacks usually follow, and staying aligned with standards keeps your system portable and future-proof.

And in real companies, agents scale messily:

  • Shadow Agents appear: multiple teams ship agents without governance, ownership, or security consistency—the same failure mode as Shadow IT.
  • Access control, data/tool permissions, auditability, and compliance become painful to manage without a central control plane.

Idun is the third path: a self-hosted, open source control plane that lets you focus on agent logic, while Idun provides the production and governance layer described in the Core Features above.

Getting Started

You can start using Idun Agent Platform in 3 ways:

  • Manager: 10 minutes, full experience Use a Web UI to manage and govern multiple configs and agents.
  • CLI: 5 minutes, easiest Lets you design your config with an interactive CLI
  • Manual config: 2 minutes, manual Fewer dependencies, but you need to follow strict schema constraints

Manager

Full Idun Agent Platform with an admin UI to manage and govern multiple configs and agents.

You need Python 3.12, Docker, and Git.

  1. Clone the repo.
git clone https://github.com/Idun-Group/idun-agent-platform.git
cd idun-agent-platform
  1. Start the platform locally.
cp .env.example .env

docker compose -f docker-compose.dev.yml up --build
  1. Open the dashboard at http://localhost:3000 and create your first agent.

👉 For a complete step-by-step tutorial, including ADK example code, see the Quickstart guide.

CLI

Easy, interactive CLI to configure your agent:

  1. Install in your agent environment:
pip install idun-agent-engine
  1. Run the CLI:
idun init
  1. Configure your agent through the interactive CLI:
    • Agent framework (LangGraph/ADK)
    • Memory/checkpointing (In-Memory, SQLite, PostgreSQL)
    • Observability (Langfuse, Phoenix, LangSmith, GCP)
    • Guardrails
    • MCP servers

[!TIP] You can press Next to save a section, or skip it. Each time you press Next, the state of your config is saved to .idun/agent_name.yaml. You can then run your agent directly without having to launch it via the CLI.

  1. The CLI lets you:
    • Deploy the agent locally
    • Show live server logs
    • Open a chat interface to test your agent

You can view the Swagger docs at http://localhost:YOUR_AGENT_PORT/docs

👉 For a complete step-by-step tutorial with the CLI, see the CLI guide

Manual config

If you just want to run an agent API (without the full platform UI/Manager), you can run the Idun Agent Engine standalone.

  1. Install:
pip install idun-agent-engine
  1. Create a minimal LangGraph agent (example_agent.py):
import operator
from typing import Annotated, TypedDict

from langgraph.graph import END, StateGraph


class AgentState(TypedDict):
    messages: Annotated[list, operator.add]


def greet_node(state: AgentState):
    user_message = state["messages"][-1] if state.get("messages") else ""
    return {"messages": [("ai", f"Hello! You said: '{user_message}'")]}


graph = StateGraph(AgentState)
graph.add_node("greet", greet_node)
graph.set_entry_point("greet")
graph.add_edge("greet", END)

app = graph
  1. Point the engine to it (config.yaml) and run:
server:
  api:
    port: 8000

agent:
  type: "langgraph"
  config:
    name: "Hello World Agent"
    graph_definition: "./example_agent.py:app"
python -c "from idun_agent_engine.core.server_runner import run_server_from_config; run_server_from_config('config.yaml')"

Then open http://localhost:8000/docs


Technical architecture

  • 🟪 Engine — wraps LangGraph/ADK agents into a FastAPI service with a unified API using the AG-UI protocol, memory, guardrails, and tracing. Use a local YAML config or fetch it from Manager.
    • CLI - easy CLI to create a YAML config for the Engine.
    • Schema — shared Pydantic models ensuring type-safe interoperability across services.
  • 🟩 ManagerFastAPI + PostgreSQL service for CRUD on engine configs; serves signed configs to Engines; enforces SSO/RBAC and tenancy.
  • 🟨 UINext.js admin UI to govern agents by creating and modifying agent configs.
flowchart LR
  subgraph Actors["Actors"]
    ChatUI["End User / Business Apps / Chat Interfaces"]
    Admin["Admin / DevOps"]
    CICD["CI/CD Pipeline"]
  end

  subgraph Idun_Platform["Idun Agent Platform"]
    direction TB
    UI["🟨 UI (Admin Dashboard)"]
    MGR["🟩 Manager (API, Auth, Policy)"]

    subgraph Agents["Agent Deployment"]
      ENG1["🟪 Engine (LangGraph Agent)"]
      ENG2["🟪 Engine (ADK Agent)"]
    end

    CFGDB[(PostgreSQL Config DB)]
  end

  subgraph Stack["Observability, Memory, Storage, Models, Tools Stack"]
    OBS["Observability (Langfuse • Phoenix • OTel)"]
    VDB[(Vector DB / Memory)]
    LLM["LLMs (Local/External)"]
    TOOLS["Tools (MCP, APIs, DBs)"]
  end

  %% Admin Governance Flow
  Admin -- "Govern" --> UI
  UI -- "Create Config" --> MGR
  MGR -- "Store Config" --> CFGDB

  %% Engines Fetching Config
  Agents -- "Get Config" --> MGR

  %% CI/CD Deploying Agents
  CICD -- "Deploy" --> Agents

  %% End User Flow
  ChatUI --> Agents

  %% Engine External Connections
  Agents --> Stack

Community and support

Commercial support

Idun Agent Platform is maintained by Idun Group. We can help with:

  • Design and review of your agent platform architecture
  • Secure deployment on your infrastructure
  • Integration with your IdP, observability stack, and compliance workflows

Contact us at contact@idun-group.com for enterprise support.

Telemetry

By default, Idun Agent Platform gathers minimal, anonymized usage metrics from self-hosted deployments to PostHog.

This enables us to:

  • Better understand how people use the platform and prioritize enhancements.
  • Track adoption for both internal improvement and, when required, external reporting.

No private or sensitive information is collected, and no usage data is shared with third parties. We aim for full transparency—view the telemetry source code to see exactly what data is collected.

If you prefer not to send usage data, you can disable telemetry by setting IDUN_TELEMETRY_ENABLED=false.

Project status and roadmap

See ROADMAP.md for the latest status, priorities, and what’s coming next.

Have an idea or want to influence priorities? Please start a thread in GitHub Discussions — we use it to collect proposals and shape the roadmap with the community.

Contributing

Contributions are welcome. Please see CONTRIBUTING.md for guidelines.

⭐️ Star Us

Capabilities

StreamingPush NotificationsMulti-TurnAuth: none
ag-ui-protocolagent-platformagentic-aiagentsaiopscopilotkitgoogle-adkgovernanceguardrailslangchain
View on GitHub