Coding with AI

no

Original Documentation

You can use AI coding assistants to build agents with Agent Development Kit (ADK). Give your coding agent ADK expertise by installing development skills into your project, or by connecting it to ADK documentation through an MCP server.

  • ADK Dev Skills: Install ADK development skills directly into your project.
  • ADK Docs MCP Server: Connect your coding tool to ADK documentation through an MCP server.
  • ADK Docs Index: Machine-readable documentation files following the llms.txt standard.

ADK Dev Skills#

ADK provides a set of development skills that cover APIs, coding patterns, deployment, and evaluation. The skills work with any compatible tool, including Gemini CLI, Antigravity, Claude Code, and Cursor.

To install the ADK development skills, run the following in your project directory:

npx skills add google/adk-docs/skills -y -g

Browse the ADK Dev Skills on GitHub, which include:

SkillDescription
adk-cheatsheetPython API quick reference and docs index
adk-deploy-guideAgent Engine and Cloud Run deployment
adk-dev-guideDevelopment lifecycle and coding guidelines
adk-eval-guideEvaluation methodology and scoring
adk-observability-guideTracing, logging, and integrations
adk-scaffoldProject scaffolding

ADK Docs MCP Server#

You can configure your coding tool to search and read ADK documentation using an MCP server. Below are setup instructions for popular tools.

Gemini CLI#

To add the ADK docs MCP server to Gemini CLI, install the ADK Docs Extension:

gemini extensions install https://github.com/derailed-dash/adk-docs-ext

Antigravity#

To add the ADK docs MCP server to Antigravity (requires uv):

  1. Open the MCP store via the (more) menu at the top of the editor’s agent panel.

  2. Click on Manage MCP Servers then View raw config.

  3. Add the following to mcp_config.json:

    {
      "mcpServers": {
        "adk-docs-mcp": {
          "command": "uvx",
          "args": [
            "--from",
            "mcpdoc",
            "mcpdoc",
            "--urls",
            "AgentDevelopmentKit:https://adk.dev/llms.txt",
            "--transport",
            "stdio"
          ]
        }
      }
    }

Claude Code#

To add the ADK docs MCP server to Claude Code:

claude mcp add adk-docs --transport stdio -- uvx --from mcpdoc mcpdoc --urls AgentDevelopmentKit:https://adk.dev/llms.txt --transport stdio

Cursor#

To add the ADK docs MCP server to Cursor (requires uv):

  1. Open Cursor Settings and navigate to the Tools & MCP tab.

  2. Click on New MCP Server, which will open mcp.json for editing.

  3. Add the following to mcp.json:

    {
      "mcpServers": {
        "adk-docs-mcp": {
          "command": "uvx",
          "args": [
            "--from",
            "mcpdoc",
            "mcpdoc",
            "--urls",
            "AgentDevelopmentKit:https://adk.dev/llms.txt",
            "--transport",
            "stdio"
          ]
        }
      }
    }

Other Tools#

Any coding tool that supports MCP servers can use the same server configuration shown above. Adapt the JSON example from the Antigravity or Cursor sections for your tool’s MCP settings.

ADK Docs Index#

The ADK documentation is available as machine-readable files following the llms.txt standard. These files are generated with every documentation update and are always up to date.

FileDescriptionURL
llms.txtDocumentation index with linksadk.dev/llms.txt
llms-full.txtFull documentation in a single fileadk.dev/llms-full.txt
Link last verified June 7, 2026. View original ↗
Source: Google ADK
Link last verified: 2026-04-05