diff --git a/browser_use/mcp/server.py b/browser_use/mcp/server.py index 4debd23aa..89c9f1f4f 100644 --- a/browser_use/mcp/server.py +++ b/browser_use/mcp/server.py @@ -342,7 +342,7 @@ class BrowserUseServer: }, 'max_steps': { 'type': 'integer', - 'description': 'Maximum number of steps the agent can take', + 'description': 'Maximum number of steps an agent can take.', 'default': 100, }, 'model': { diff --git a/docs/customize/agent/basics.mdx b/docs/customize/agent/basics.mdx index 1b7892cf1..b0cafd5ec 100644 --- a/docs/customize/agent/basics.mdx +++ b/docs/customize/agent/basics.mdx @@ -24,4 +24,4 @@ async def main(): The agent is executed using the async `run()` method: -- `max_steps` (default: `100`): Maximum number of steps the agent can take +- `max_steps` (default: `100`): Maximum number of steps an agent can take. diff --git a/docs/customize/browser/real-browser.mdx b/docs/customize/browser/real-browser.mdx index 2740e792f..f84426582 100644 --- a/docs/customize/browser/real-browser.mdx +++ b/docs/customize/browser/real-browser.mdx @@ -27,9 +27,8 @@ async def main(): await agent.run() ``` -> **Note:** You need to fully close chrome before running this example. +> **Note:** You need to fully close chrome before running this example. Also, Google blocks this approach currently so we use DuckDuckGo instead. -> **Note:** Google blocks this approach currently so we use DuckDuckGo instead.