Google Agent Development Kit (ADK) is an open-source framework for building AI agents powered by Gemini. Use it with the Apideck MCP Server to give your agents access to accounting, HRIS, and file storage data.
Connect Google ADK to the Apideck MCP Server with a few lines of code.
from google.adk.tools.mcp_tool import MCPToolset, StreamableHTTPConnectionParams
tools, exit_stack = await MCPToolset.from_server(
connection_params=StreamableHTTPConnectionParams(
url="https://mcp.apideck.dev/mcp",
headers={
"x-apideck-api-key": "YOUR_API_KEY",
"x-apideck-app-id": "YOUR_APP_ID",
"x-apideck-consumer-id": "YOUR_CONSUMER_ID",
},
)
)Every resource below is accessible as a set of MCP tools (list, get, create, update, delete) through Google ADK.