Welcome to the Agent Directory repository! This collection provides production-ready AI agents built on top of the Agent Development Kit (ADK), designed to showcase various agent patterns, capabilities, and integrations.
- 🤖 Production-Ready Agents: Battle-tested agents covering web search, research, image generation, and more
- 🔌 Standard API: All agents expose a consistent HTTP API for easy integration
- 🌐 Live Testing: All agents are live and testable at agentdirectory.folch.ai
- 📋 Metadata-Driven: Agents are automatically discovered and displayed based on
metadata.jsonfiles - 📦 Open Source: MIT licensed and ready for contributions
🌐 Live Demo: Test all agents in this repository at agentdirectory.folch.ai. The website automatically discovers and displays agents based on their
metadata.jsonfiles, making proper metadata configuration essential for your agent to appear correctly.
This repository contains ADK sample agents for Python. Each agent is self-contained with its own configuration, tools, and documentation. Navigate to individual agent directories to see setup instructions and learn more about specific capabilities.
Important
The agents in this repository are built using the Agent Development Kit (ADK). Before you can run any of the samples, you must have the ADK installed. For instructions, please refer to the ADK Installation Guide.
Note
Metadata is Essential: For your agent to appear correctly on agentdirectory.folch.ai, you must include a properly formatted metadata.json file in your agent directory. See AGENT_METADATA.md for the complete metadata specification.
To learn more, check out the ADK Documentation and the ADK Python repository.
.
├── agents/ # Agent directory
│ ├── adk_agent_builder/ # Meta-agent for building agents
│ ├── exa_mcp_agent/ # EXA AI research agent
│ ├── image_generation_agent/ # Image generation agent
│ ├── resume_screener/ # Multi-agent resume screener
│ ├── simple_agent_web_search/ # Basic web search agent
│ ├── mermaid_mcp_agent/ # Mermaid diagram generator
│ ├── tavily_mcp_agent/ # Tavily research agent
│ ├── simple_agent_maps_grounded/ # Maps-integrated agent
│ ├── pyproject.toml # Dependencies
│ └── uv.lock # Lock file
├── run_adk.py # Server entrypoint
├── README.md # This file
├── AGENT_METADATA.md # Metadata specification
├── metadata.json.template # Metadata template
├── Dockerfile # Docker configuration
└── LICENSE # License file
Each agent directory contains:
agent.py- Main agent definitionconfig/- Configuration and LLM setupprompt/- Agent instructions and promptstools/- Custom tools and integrationsmetadata.json- Required agent metadata for website integrationREADME.md- Agent-specific documentation and setup instructions
Important
The metadata.json file is required for your agent to appear correctly on agentdirectory.folch.ai. The website automatically discovers agents and displays them based on this metadata. See AGENT_METADATA.md for the complete specification.
All agents expose a standard HTTP API through the ADK server. The server provides:
- Agent Discovery:
GET /list-apps- List available agents - Agent Execution:
POST /run- Run agent (non-streaming) - Streaming:
POST /run_sse- Run agent with Server-Sent Events - Session Management: Create and manage conversation sessions
- Artifacts: Access generated files, images, and structured outputs
For detailed API documentation, see the ADK documentation.
If you have any questions or if you found any problems with this repository, please report through GitHub issues.
We welcome contributions from the community! Whether it's bug reports, feature requests, documentation improvements, or code contributions, we'd love to have your agent included in the Agent Directory.
- Fork and Clone: Fork this repository and clone your fork locally
- Create Your Agent: Develop your agent following the ADK structure and best practices
- Add Metadata: Create a
metadata.jsonfile with complete agent information (required for the website to display your agent) - Add Documentation: Include a
README.mdwith setup and usage instructions - Submit Pull Request: Create a pull request with your agent for review
When contributing an agent, ensure your agent directory follows this structure:
agent_name/
├── agent.py # Main agent definition (required)
├── metadata.json # Agent metadata (required)
├── README.md # Documentation and setup instructions (recommended)
├── config/ # Configuration files
│ ├── __init__.py
│ ├── llm.py # LLM configuration
│ └── utils.py # Utility functions
├── prompt/ # Agent prompts and instructions
│ ├── __init__.py
│ └── prompt.py # Main prompt definition
└── tools/ # Custom tools and integrations
├── __init__.py
└── your_tool.py # Tool implementations
Required Files:
agent.py- Main agent implementationmetadata.json- Complete agent metadata (see AGENT_METADATA.md)
Recommended Files:
README.md- Setup instructions, usage examples, and documentationconfig/- Configuration and LLM setupprompt/- Agent instructions and promptstools/- Custom tools and integrations
For detailed contribution instructions, including metadata templates and submission guidelines, see the Contribution Guide.
When contributing:
- Add appropriate documentation
- Include tests for new features
- Ensure
metadata.jsonis complete and accurate - this is critical for your agent to appear on the website
- Live Agent Directory - Test all agents in this repository
- Google ADK Documentation
- ADK Python Repository
- Contribution Guide - Learn how to submit your agent
This project is licensed under the MIT License - see the LICENSE file for details.
This is not an officially supported Google product. This project is intended for demonstration and educational purposes.