Google ADK Integration
Integrate Talordata MCP Server with Google ADK to give AI agents access to real-time SERP data and structured search results.
Remote MCP
3
Configure your MCP server
from google.adk.agents import Agent
from google.adk.tools.mcp_tool.mcp_session_manager import StreamableHTTPServerParams
from google.adk.tools.mcp_tool.mcp_toolset import McpToolset
TALORDATA_API_TOKEN = "YOUR_TALORDATA_API_TOKEN"
root_agent = Agent(
model="gemini-2.5-pro",
name="TALORdata_agent",
instruction="""Help users access web data using TalorData""",
tools=[
McpToolset(
connection_params=StreamableHTTPServerParams(
url=f"https://mcp.talordata.com/TALORDATA_API_TOKEN/mcp",
),
)
],
)4
Last updated