├── .gitignore ├── LICENSE ├── README.md ├── README_zh.md ├── bridge_app.py ├── capability_registry.py ├── client_manager.py ├── config.json ├── config_loader.py ├── errors.py ├── img ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── 8.png ├── main.py ├── mods ├── sse_test_server.py └── stdio_test_server.py ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/README_zh.md -------------------------------------------------------------------------------- /bridge_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/bridge_app.py -------------------------------------------------------------------------------- /capability_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/capability_registry.py -------------------------------------------------------------------------------- /client_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/client_manager.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/config.json -------------------------------------------------------------------------------- /config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/config_loader.py -------------------------------------------------------------------------------- /errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/errors.py -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/img/6.png -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/img/7.png -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/img/8.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/main.py -------------------------------------------------------------------------------- /mods/sse_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/mods/sse_test_server.py -------------------------------------------------------------------------------- /mods/stdio_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/mods/stdio_test_server.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trtyr/MCP-Gateway/HEAD/uv.lock --------------------------------------------------------------------------------