feat: support mcp_servers in config.toml

This commit is contained in:
Michael Bolin
2025-05-06 14:07:24 -07:00
parent 49d040215a
commit a4e59988db
12 changed files with 483 additions and 15 deletions

View File

@@ -328,6 +328,21 @@ impl ChatWidget<'_> {
.record_completed_exec_command(call_id, stdout, stderr, exit_code);
self.request_redraw()?;
}
EventMsg::McpToolCallBegin {
call_id,
server,
tool,
arguments,
} => {
todo!()
}
EventMsg::McpToolCallEnd {
call_id,
success,
result,
} => {
todo!()
}
event => {
self.conversation_history
.add_background_event(format!("{event:?}"));