.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/google/adk-python
home/mcp-servers/google/adk-python
google avatar

adk-python

bygoogle· 1 MCP server

Stars

21k

Forks

3.8k

Category

AI Agents & MCP

View on GitHub

TL;DR

Agent Development Kit

How to install adk-python?

google/adk-python
$git clone https://github.com/google/adk-python

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install adk-python by running `git clone https://github.com/google/adk-python`, then use it for the current task and follow its documentation at https://github.com/google/adk-python.

Files · 1

View on GitHub
README.md
1# Agent Development Kit (ADK) 2.0
2 
3[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
4[![PyPI version](https://img.shields.io/pypi/v/google-adk.svg)](https://pypi.org/project/google-adk/)
5[![Python versions](https://img.shields.io/pypi/pyversions/google-adk.svg)](https://pypi.org/project/google-adk/)
6[![PyPI downloads](https://static.pepy.tech/badge/google-adk/month)](https://pepy.tech/project/google-adk)
7[![Unit Tests](https://github.com/google/adk-python/actions/workflows/python-unit-tests.yml/badge.svg)](https://github.com/google/adk-python/actions/workflows/python-unit-tests.yml)
8[![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://google.github.io/adk-docs/)
9 
10<h2 align="center">
11 <img src="https://raw.githubusercontent.com/google/adk-python/main/assets/agent-development-kit.png" width="256"/>
12</h2>
13<h3 align="center">
14 An open-source, code-first Python framework for building, evaluating, and deploying sophisticated AI agents with flexibility and control.
15</h3>
16<h3 align="center">
17 Important Links:
18 <a href="https://google.github.io/adk-docs/">Docs</a>,
19 <a href="https://github.com/google/adk-samples">Samples</a> &
20 <a href="https://github.com/google/adk-web">ADK Web</a>.
21</h3>
22 
23______________________________________________________________________
24 
25> **⚠️ BREAKING CHANGES FROM 1.x**
26>
27> This release includes breaking changes to the agent API, event model, and
28> session schema. **Sessions generated by ADK 2.0 are readable by ADK 1.28+
29> (extra fields will be ignored), but are incompatible with older 1.x versions.**
30 
31______________________________________________________________________
32 
33## 🔥 What's New in 2.0
34 
35- **Workflow Runtime**: A graph-based execution engine for composing
36 deterministic execution flows for agentic apps, with support for routing,
37 fan-out/fan-in, loops, retry, state management, dynamic nodes,
38 human-in-the-loop, and nested workflows.
39 
40- **Task API**: Structured agent-to-agent delegation with multi-turn task
41 mode, single-turn controlled output, mixed delegation patterns,
42 human-in-the-loop, and task agents as workflow nodes.
43 
44## 🚀 Installation
45 
46```bash
47pip install google-adk
48```
49 
50**Requirements:** Python 3.10+.
51 
52To install optional integrations, you can use the following command:
53 
54```bash
55pip install "google-adk[extensions]"
56```
57 
58The release cadence is roughly bi-weekly.
59 
60## Quick Start
61 
62> **Beginner Note:** ADK applications are built using two main classes:
63> **`Agent`** (defines an AI's instructions, tools, and behavior) and
64> **`Workflow`** (orchestrates agents and tasks in a graph-based flow).
65 
66### Agent
67 
68```python
69from google.adk import Agent
70 
71root_agent = Agent(
72 name="greeting_agent",
73 model="gemini-2.5-flash",
74 instruction="You are a helpful assistant. Greet the user warmly.",
75)
76```
77 
78### Workflow
79 
80```python
81from google.adk import Agent, Workflow
82 
83generate_fruit_agent = Agent(
84 name="generate_fruit_agent",
85 instruction="Return the name of a random fruit. Return only the name.",
86)
87 
88generate_benefit_agent = Agent(
89 name="generate_benefit_agent",
90 instruction="Tell me a health benefit about the specified fruit.",
91)
92 
93root_agent = Workflow(
94 name="root_agent",
95 edges=[("START", generate_fruit_agent, generate_benefit_agent)],
96)
97```
98 
99### Run Locally
100 
101```bash
102# Interactive CLI
103adk run path/to/my_agent
104 
105# Web UI (supports multi-agent directories or pointing directly to a single agent folder)
106adk web path/to/agents_dir
107```
108 
109## 📚 Documentation
110 
111- **Getting Started**: https://google.github.io/adk-docs/
112- **Samples**: See `contributing/workflow_samples/` and
113 `contributing/task_samples/` for workflow and task API examples.
114 
115## 🤝 Contributing
116 
117See [CONTRIBUTING.md](CONTRIBUTING.md) for details.
118 
119## 📄 License
120 
121This project is licensed under the Apache 2.0 License — see the
122[LICENSE](LICENSE) file for details.

Preview

google/adk-pythongoogle/adk-python
Repogoogle/adk-python
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k