LangGraph templates
ADK templates
Get started
1
Clone the template repo
2
Pick a template
3
Install dependencies and configure
4
Run it
config.yaml, opens the browser at http://localhost:<port>/ (default 8000; override with --port or IDUN_PORT), and serves the standalone app. idun init is idempotent, so you can re-run it on the same folder. For routine restarts that skip migration/seed work, prefer idun serve.Which template should you pick?
- First time with Idun? Start with
langgraph-simple. It’s the shortest path to a running agent. - Need tool calling? Use
langgraph-tool-node. It follows the recommended LangGraph pattern. - Want MCP tools from the platform AND local tools? Use
langgraph-tool-local. - Building with Google ADK? Start with
adk-tool. - Need typed input/output schemas? Look at
langgraph-structuredoradk-structured. - Building a multi-step workflow? The
langgraph-editorial-loopshows a researcher/writer/reviewer pattern with conditional routing.