Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- ghidra_version: "11.3.2"
ghidra_date: "20250415"
- ghidra_version: "12.0.3"
ghidra_date: "20260210"
env:
GHIDRA_VERSION: 11.3.2
GHIDRA_DATE: 20250415
GHIDRA_VERSION: ${{ matrix.ghidra_version }}
GHIDRA_DATE: ${{ matrix.ghidra_date }}
GHIDRA_LIBS: >-
Features/Base/lib/Base.jar
Features/Decompiler/lib/Decompiler.jar
Expand Down Expand Up @@ -56,6 +63,6 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: GhidraMCP-artifact
name: GhidraMCP-artifact-${{ matrix.ghidra_version }}
path: |
release/*
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ First, download the latest [release](https://github.com/LaurieWired/GhidraMCP/re
3. Click the `+` button
4. Select the `GhidraMCP-1-2.zip` (or your chosen version) from the downloaded release
5. Restart Ghidra
6. Make sure the GhidraMCPPlugin is enabled in `File` -> `Configure` -> `Developer`
7. *Optional*: Configure the port in Ghidra with `Edit` -> `Tool Options` -> `GhidraMCP HTTP Server`
6. Open a program in the CodeBrowser
7. Make sure the GhidraMCPPlugin is enabled in `File` -> `Configure` -> `Developer`
8. *Optional*: Configure the port in Ghidra with `Edit` -> `Tool Options` -> `GhidraMCP HTTP Server`

Video Installation Guide:

Expand Down
21 changes: 13 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,61 +10,66 @@
<name>GhidraMCP</name>
<url>http://maven.apache.org</url>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>

<dependencies>
<!-- Ghidra JARs as system-scoped dependencies -->
<dependency>
<groupId>ghidra</groupId>
<artifactId>Generic</artifactId>
<version>11.3.2</version>
<version>12.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Generic.jar</systemPath>
</dependency>
<dependency>
<groupId>ghidra</groupId>
<artifactId>SoftwareModeling</artifactId>
<version>11.3.2</version>
<version>12.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/SoftwareModeling.jar</systemPath>
</dependency>
<dependency>
<groupId>ghidra</groupId>
<artifactId>Project</artifactId>
<version>11.3.2</version>
<version>12.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Project.jar</systemPath>
</dependency>
<dependency>
<groupId>ghidra</groupId>
<artifactId>Docking</artifactId>
<version>11.3.2</version>
<version>12.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Docking.jar</systemPath>
</dependency>
<dependency>
<groupId>ghidra</groupId>
<artifactId>Decompiler</artifactId>
<version>11.3.2</version>
<version>12.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Decompiler.jar</systemPath>
</dependency>
<dependency>
<groupId>ghidra</groupId>
<artifactId>Utility</artifactId>
<version>11.3.2</version>
<version>12.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Utility.jar</systemPath>
</dependency>
<dependency>
<groupId>ghidra</groupId>
<artifactId>Base</artifactId>
<version>11.3.2</version>
<version>12.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Base.jar</systemPath>
</dependency>
<dependency>
<groupId>ghidra</groupId>
<artifactId>Gui</artifactId>
<version>11.3.2</version>
<version>12.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Gui.jar</systemPath>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/extension.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ name=GhidraMCP
description=A plugin that runs an embedded HTTP server to expose program data.
author=LaurieWired
createdOn=2025-03-22
version=11.3.2
ghidraVersion=11.3.2
version=12.0.3
ghidraVersion=12.0.3