Explicitly require ProgramManager

This commit is contained in:
Teal Bauer 2025-04-08 09:44:11 +02:00
parent a469b38ec4
commit 8f3fa16ad8

View File

@ -68,7 +68,8 @@ import ghidra.util.task.ConsoleTaskMonitor;
packageName = ghidra.app.DeveloperPluginPackage.NAME,
category = PluginCategoryNames.ANALYSIS,
shortDescription = "GhydraMCP Plugin for AI Analysis",
description = "Starts an embedded HTTP server to expose program data via REST API for AI-assisted reverse engineering with MCP (Model Context Protocol)."
description = "Exposes program data via HTTP API for AI-assisted reverse engineering with MCP (Model Context Protocol).",
servicesRequired = { ProgramManager.class }
)
public class GhydraMCPPlugin extends Plugin implements ApplicationLevelPlugin {