web-agent-protocol
🌐Web Agent Protocol (WAP) - Record and replay user interactions in the browser with MCP support Python-based implementation.
Documentation
Web Agent Protocol
Overview
The Web Agent Protocol (WAP) is a standardized framework designed to enable seamless interaction between users, web agents, and browsers by recording and replaying browser actions. It separates the concerns of action recording and execution, allowing for efficient automation and reusability. The Python SDK for WAP implements the full specification, making it easy to:
1. Collect user‑interaction data with the OTA‑WAP Chrome extension.
2. Convert the raw event stream into either _exact‑replay_ or _smart‑replay_ action lists.
3. Convert recorded actions into _MCP_ servers for reuse by any agent or user
4. Replay those lists using the _WAP-Replay_ protocol to ensure accurate browser operations.
WAP FULL DEMO

Without WAP
WAP Record
WAP Replay
Example using WAP
Setup
Install the dependencies with the following command:
Create a conda env
conda create -n WAP python=3.11Activate the conda env
conda activate WAPInstall the dependencies
pip install -r requirements.txtSetup your repo source path:
set PYTHONPATH=C:/path/to/webagentprotocol # for Windows
export PYTHONPATH=/path/to/webagentprotocol # for LinuxCreate .env file under the repo root directory with your own API keys:
OPENAI_API_KEY=sk-proj-...
DEEPSEEK_API_KEY=sk-...Record
WAP record extension
Please refer to OTA‑WAP Chrome Extension to setup action capturer in your Chrome browser.
Start data‑collection server
Run the following command to start the server to collect data from the extension:
python action_collect_server.pyOnce the server is up, you can start to record from the page using WAP Chrome extension.
The server listens on http://localhost:4934/action-data by default, please make sure the Host and Port in the extension settings match this server config.
Each session will be saved to:
data/YYYYMMDD/taskid/summary_event_.jsonAn example of the formatted data which you will received in the WAP backend server is like:
{
"taskId": "MkCAhQsHgXn7YgaK",
"type": "click",
"actionTimestamp": 1746325231479,
"eventTarget": {
"type": "click",
"target": "..."
}Generate replay lists
| Mode | Command |
|---|---|
| Exact replay – exactly reproduce every action | `python wap_replay/generate_exact_replay_list.py --data_dir_path data// --output_dir_path data_processed/exact_replay` |
| Smart replay – condensed goal‑oriented steps | `python wap_replay/generate_smart_replay_list.py --data_dir_path data// --output_dir_path data_processed/smart_replay` |
Replace **** with the folder produced by the extension
(e.g. em3h6UBDZykz0gnH).
Output structure:
data_processed/smart_replay/
├─ subgoals_/ # intermediate prompts & replies
└─ wap_smart_replay_list_.json # final smart replay list for the agent
data_processed/exact_replay/
└─ wap_smart_replay_list_.json # final exact replay list for the agentReplay
python run_replay.py --model-provider openai --wap_replay_list data_processed/exact_replay/wap_exact_replay_list_.json --max-concurrent 1For smart-replay, replace the path with a smart‑replay JSON to test this mode.
Convert to MCP Server
python wap_replay\generate_mcp_server.py --task_idconverted MCP servers will be located under ``` mcp_servers ``` folder
Replay with MCP
You would need 2 terminals to replay with MCP. In the first termnial
python wap_service.pyIn the second termnial
python mcp_client.pyThen enter your prompt in the second terminal
example: find a top rated keyboard on amazon.ca using smart replayReplay with our Desktop App
We provide out-of-box desktop app for running replay lists. It is easy to install and you don't need any extra steps for setup and deployments. Visit WAP Replay Tool releases for more details.
Troubleshooting
ModuleNotFoundError – run commands from the project root or export PYTHONPATH=. (set PYTHONPATH=. for Windows).
“no task‑start file” – ensure the extension recorded a full session;
the generators require exactly one task-start and one task-finish record.
Acknowledgement
Browser-Use: https://github.com/browser-use/browser-use
MCP: https://github.com/modelcontextprotocol/python-sdk
DOM Extension: https://github.com/kdzwinel/DOMListenerExtension
Frequently asked questions
What is web-agent-protocol?
web-agent-protocol is 🌐Web Agent Protocol (WAP) - Record and replay user interactions in the browser with MCP support Python-based implementation.
How do I install web-agent-protocol?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is web-agent-protocol open source?
Yes — it is hosted on GitHub at https://github.com/OTA-Tech-AI/web-agent-protocol and has 479 stars.
Related MCP tools
Expose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth! Python-based implementation. Trusted by 11000+ developers.
Build effective agents using Model Context Protocol and simple workflow patterns Python-based implementation. Trusted by 7600+ developers.
An MCP server that autonomously evaluates web applications. Python-based implementation. Trusted by 1100+ developers. Trusted by 1100+ developers.
Connect AI models like Claude & GPT with robots using MCP and ROS. Python-based implementation. Trusted by 800+ developers.
Browse the web, directly from Cursor etc. Built for the Model Context Protocol to enhance AI capabilities. Python-based implementation.
Shell and coding agent on claude desktop app for the Model Context Protocol. Enhance AI assistants with powerful integrations. Python-based implementation.
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP