Google ADK Integration Guide

February 3, 2026 ยท View on GitHub

This guide shows how to integrate Universal Database MCP Server with Google ADK.

Overview

Google ADK (Agent Development Kit) is Google's agent development toolkit. It supports MCP, allowing you to use database tools in your agents.

Prerequisites

  • Google Cloud account
  • Google ADK installed
  • Node.js 20.0.0 or later
  • Database instance

Configuration

Add to ADK configuration:

{
  "mcpServers": {
    "database": {
      "command": "npx",
      "args": [
        "universal-db-mcp",
        "--type", "mysql",
        "--host", "localhost",
        "--port", "3306",
        "--user", "root",
        "--password", "your_password",
        "--database", "your_database"
      ]
    }
  }
}

Usage

Use the database tools in your ADK agents to query data.

Resources