We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wannabidr/test-for-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
agent.py•356 B
from google.adk.agents import Agent
from .knowledge.agent import knowledge_agent
from .prompts import agent_instruction
Model = "gemini-2.5-flash"
root_agent = Agent(
name="ecom-agent",
model=Model,
description="An agent that extracts the necessary data from the text",
instruction=agent_instruction,
sub_agents=[knowledge_agent],
)