├── .env.template ├── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE ├── README.md ├── chatgui.py ├── client_bridge ├── __init__.py ├── bridge.py ├── config.py ├── llm_client.py ├── llm_config.py └── mcp_client.py ├── client_test.py ├── doc ├── chatgui_gpt_generate.png └── globe_icon.png ├── pyproject.toml ├── server ├── browser_manager.py └── browser_navigator_server.py └── smithery.yaml /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/README.md -------------------------------------------------------------------------------- /chatgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/chatgui.py -------------------------------------------------------------------------------- /client_bridge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/client_bridge/__init__.py -------------------------------------------------------------------------------- /client_bridge/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/client_bridge/bridge.py -------------------------------------------------------------------------------- /client_bridge/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/client_bridge/config.py -------------------------------------------------------------------------------- /client_bridge/llm_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/client_bridge/llm_client.py -------------------------------------------------------------------------------- /client_bridge/llm_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/client_bridge/llm_config.py -------------------------------------------------------------------------------- /client_bridge/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/client_bridge/mcp_client.py -------------------------------------------------------------------------------- /client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/client_test.py -------------------------------------------------------------------------------- /doc/chatgui_gpt_generate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/doc/chatgui_gpt_generate.png -------------------------------------------------------------------------------- /doc/globe_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/doc/globe_icon.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /server/browser_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/server/browser_manager.py -------------------------------------------------------------------------------- /server/browser_navigator_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/server/browser_navigator_server.py -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimtth/mcp-aoai-web-browsing/HEAD/smithery.yaml --------------------------------------------------------------------------------