Skip to content

get_assembly_info

Decompilation

Returns key metadata about a .NET assembly including its name, version, target framework, runtime version, signing status, and debug information availability. A lightweight reconnaissance tool for understanding what kind of binary you are working with before committing to a full decompilation.

ParameterTypeRequiredDefaultDescription
assembly_pathstringYesPath to the .dll or .exe file
{
"tool": "get_assembly_info",
"arguments": {
"assembly_path": "/path/to/MyApp.dll"
}
}

Returns a structured summary with:

  • Name and Full Name — assembly identity
  • Version — assembly version number
  • Location — resolved file path
  • Target Framework — .NET Framework, .NET Core, .NET 5+, etc.
  • Runtime Version — CLR version the assembly was built against
  • Is Signed — whether the assembly has a strong name signature
  • Has Debug Info — whether PDB debugging information is available