Can I dynamically add the MCP Tool by writing an editor script, as follows: ```csharp #if UNITY_EDITOR [MCPTool] public class ExampleTool : MCPTool { protected override string Name => "Tool Name..."; protected override string Descrption => "Description..."; protected override void Execute(JObject args) { ... } } #endif ``` This might be more usable for highly process-oriented business projects.