├── .python-version ├── LICENSE ├── README.md ├── img └── lattice-logo.png ├── lattice_client.py ├── lib └── lattice.py ├── mcp_server.py ├── plugin ├── __init__.py └── lattice_server_plugin.py ├── requirements.txt ├── setup.py └── tests ├── conftest.py ├── data ├── test_binary └── test_program.c └── test_lattice_server.py /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/README.md -------------------------------------------------------------------------------- /img/lattice-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/img/lattice-logo.png -------------------------------------------------------------------------------- /lattice_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/lattice_client.py -------------------------------------------------------------------------------- /lib/lattice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/lib/lattice.py -------------------------------------------------------------------------------- /mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/mcp_server.py -------------------------------------------------------------------------------- /plugin/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Binary Ninja Lattice Server Plugin 3 | """ -------------------------------------------------------------------------------- /plugin/lattice_server_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/plugin/lattice_server_plugin.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/test_binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/tests/data/test_binary -------------------------------------------------------------------------------- /tests/data/test_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/tests/data/test_program.c -------------------------------------------------------------------------------- /tests/test_lattice_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoke-RE/binja-lattice-mcp/HEAD/tests/test_lattice_server.py --------------------------------------------------------------------------------