X Tutup
Skip to content

Coding with AI

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 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 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

Browse the ADK skills on GitHub, which include:

Skill Description
adk-cheatsheet Python API quick reference and docs index
adk-deploy-guide Agent Engine and Cloud Run deployment
adk-dev-guide Development lifecycle and coding guidelines
adk-eval-guide Evaluation methodology and scoring
adk-observability-guide Tracing, logging, and integrations
adk-scaffold Project 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://google.github.io/adk-docs/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://google.github.io/adk-docs/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://google.github.io/adk-docs/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.

File Description URL
llms.txt Documentation index with links google.github.io/adk-docs/llms.txt
llms-full.txt Full documentation in a single file google.github.io/adk-docs/llms-full.txt
X Tutup