mirror of
https://github.com/browser-use/browser-use
synced 2026-04-22 17:45:09 +02:00
13 lines
199 B
Python
13 lines
199 B
Python
"""Entry point for running MCP server as a module.
|
|
|
|
Usage:
|
|
python -m browser_use.mcp
|
|
"""
|
|
|
|
import asyncio
|
|
|
|
from browser_use.mcp.server import main
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|