diff --git a/docs/docs/agents/mcp.md b/docs/docs/agents/mcp.md index dbe3d092e..919f5a967 100644 --- a/docs/docs/agents/mcp.md +++ b/docs/docs/agents/mcp.md @@ -38,7 +38,7 @@ client = MultiServerMCPClient( "transport": "stdio", }, "weather": { - # Ensure your start your weather server on port 8000 + # Ensure you start your weather server on port 8000 "url": "http://localhost:8000/mcp", "transport": "streamable_http", } diff --git a/docs/docs/agents/multi-agent.md b/docs/docs/agents/multi-agent.md index 51a35bbac..54ba13c9c 100644 --- a/docs/docs/agents/multi-agent.md +++ b/docs/docs/agents/multi-agent.md @@ -9,7 +9,7 @@ hide: # Multi-agent -A single agent might struggle if it needs to specialize in multiple domains or manage many tools. To tackle this, you can break your agent into smaller, independent agents and composing them into a [multi-agent system](../concepts/multi_agent.md). +A single agent might struggle if it needs to specialize in multiple domains or manage many tools. To tackle this, you can break your agent into smaller, independent agents and compose them into a [multi-agent system](../concepts/multi_agent.md). In multi-agent systems, agents need to communicate between each other. They do so via [handoffs](#handoffs) — a primitive that describes which agent to hand control to and the payload to send to that agent.