A minimal Model Context Protocol π₯οΈ server/clientπ§βπ»with OpenAI and π web browser control via Playwright.
A minimal Model Context Protocol π₯οΈ server/clientπ§βπ»with OpenAI and π web browser control via Playwright. The mcp aoai web browsing mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 1 defined tool rather than through you.
FastMCP. 2. Playwright is an an open source, end to end testing framework by Microsoft for testing your modern web applications. 3. The MCP response about tools will be converted to the OpenAI function calling format. 4. The bridge that converts the MCP server response to the OpenAI function calling format customises the MCP-LLM Bridge implementation. 5. To ensure a stable connection, the server object is passed directly into the bridge. 6. The client_bridge supports both in-process and external (stdio) MCP server connections, enabling reuse by different clients (e.g.Everything the assistant can do here goes through one of these:
Configuration β During the development phase in December 2024, the Python project should be initiated with 'uv'. Other dependency management libraries, such as 'pip'Setup follows the usual MCP pattern β install or clone the server, register it in your client's configuration file, restart the client.
You will need 5 environment variables: AZURE_OPEN_AI_ENDPOINT, AZURE_OPEN_AI_API_KEY, AZURE_OPEN_AI_DEPLOYMENT_MODEL, AZURE_OPEN_AI_API_VERSION, OPENAI_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Aoai Web Browsing's toolset β Configuration β is a fair guide to whether it matches your workflow. It is maintained by kimtth; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| Configuration | During the development phase in December 2024, the Python project should be initiated with 'uv'. Other dependency management libraries, such as 'pip' and 'poetry', are not yet fully supported by the MCP CLI. |
| Variable | Description | Required |
|---|---|---|
| AZURE_OPEN_AI_ENDPOINT | Configuration value read at startup. | Optional |
| AZURE_OPEN_AI_API_KEY | Credential the server authenticates with. | Yes |
| AZURE_OPEN_AI_DEPLOYMENT_MODEL | Configuration value read at startup. | Optional |
| AZURE_OPEN_AI_API_VERSION | Configuration value read at startup. | Optional |
| OPENAI_API_KEY | Credential the server authenticates with. | Yes |
Microsoft's official browser automation server β drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction β render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server β simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents β automation sessions that run in Browserbase's fleet, not on your machine.