mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
"""
|
|
Simple example of using MCP client with browser-use.
|
|
|
|
This example shows how to connect to an MCP server and use its tools with an agent.
|
|
"""
|
|
|
|
import asyncio
|
|
import os
|
|
|
|
from browser_use import Agent, Tools
|
|
from browser_use.llm.openai.chat import ChatOpenAI
|
|
from browser_use.mcp.client import MCPClient
|
|
|
|
|
|
async def main():
|
|
# Initialize tools
|
|
tools = Tools()
|
|
|
|
# Connect to a filesystem MCP server
|
|
# This server provides tools to read/write files in a directory
|
|
mcp_client = MCPClient(
|
|
server_name='filesystem', command='npx', args=['@modelcontextprotocol/server-filesystem', os.path.expanduser('~/Desktop')]
|
|
)
|
|
|
|
# Connect and register MCP tools
|
|
await mcp_client.connect()
|
|
await mcp_client.register_to_tools(tools)
|
|
|
|
# Create agent with MCP-enabled tools
|
|
agent = Agent(
|
|
task='List all files on the Desktop and read the content of any .txt files you find',
|
|
llm=ChatOpenAI(model='gpt-4.1-mini'),
|
|
tools=tools,
|
|
)
|
|
|
|
# Run the agent - it now has access to filesystem tools
|
|
await agent.run()
|
|
|
|
# Disconnect when done
|
|
await mcp_client.disconnect()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|