├── LICENSE ├── README.md ├── ida-plugin.json ├── pyproject.toml ├── src ├── ida_pro_mcp.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── requires.txt │ └── top_level.txt └── ida_pro_mcp │ ├── __init__.py │ ├── idalib_server.py │ ├── mcp-plugin.py │ └── server.py ├── uv-package.sh ├── uv.lock └── 参考mcpjson.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/README.md -------------------------------------------------------------------------------- /ida-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/ida-plugin.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ida_pro_mcp.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/src/ida_pro_mcp.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/ida_pro_mcp.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/src/ida_pro_mcp.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/ida_pro_mcp.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/ida_pro_mcp.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/src/ida_pro_mcp.egg-info/entry_points.txt -------------------------------------------------------------------------------- /src/ida_pro_mcp.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | mcp>=1.6.0 2 | -------------------------------------------------------------------------------- /src/ida_pro_mcp.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ida_pro_mcp 2 | -------------------------------------------------------------------------------- /src/ida_pro_mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ida_pro_mcp/idalib_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/src/ida_pro_mcp/idalib_server.py -------------------------------------------------------------------------------- /src/ida_pro_mcp/mcp-plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/src/ida_pro_mcp/mcp-plugin.py -------------------------------------------------------------------------------- /src/ida_pro_mcp/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/src/ida_pro_mcp/server.py -------------------------------------------------------------------------------- /uv-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/uv-package.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/uv.lock -------------------------------------------------------------------------------- /参考mcpjson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namename333/idapromcp_333/HEAD/参考mcpjson.txt --------------------------------------------------------------------------------