├── .gitignore ├── README.md ├── mcp_velociraptor_bridge.py ├── requirements.txt ├── test_api.py └── velociraptor_api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgreen27/mcp-velociraptor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgreen27/mcp-velociraptor/HEAD/README.md -------------------------------------------------------------------------------- /mcp_velociraptor_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgreen27/mcp-velociraptor/HEAD/mcp_velociraptor_bridge.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mcp 2 | pyvelociraptor 3 | asyncio 4 | -------------------------------------------------------------------------------- /test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgreen27/mcp-velociraptor/HEAD/test_api.py -------------------------------------------------------------------------------- /velociraptor_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgreen27/mcp-velociraptor/HEAD/velociraptor_api.py --------------------------------------------------------------------------------