Implemented a first version of an MCP server as a Chat Bot

This commit is contained in:
Anon 2026-03-28 02:08:47 +01:00
parent 5270aed315
commit 79b091cab6
15 changed files with 2350 additions and 2 deletions

View file

@ -1755,6 +1755,17 @@ namespace MinecraftClient
get { return ChatBots.DiscordRpc.Config; }
set { ChatBots.DiscordRpc.Config = value; ChatBots.DiscordRpc.Config.OnSettingUpdate(); }
}
[TomlPrecedingComment("$ChatBot.McpServer$")]
public ChatBots.McpServer.Configs McpServer
{
get { return ChatBots.McpServer.Config; }
set
{
ChatBots.McpServer.Config = value ?? new ChatBots.McpServer.Configs();
ChatBots.McpServer.Config.OnSettingUpdate();
}
}
}
}