From 1398648f6d59553e5d60c091dd5fa1935226d797 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 15 Jun 2026 09:46:38 +0200 Subject: [PATCH] fix(Message): Add a nice label for mcp_ tools Signed-off-by: Marcel Klehr --- src/components/ChattyLLM/Message.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/ChattyLLM/Message.vue b/src/components/ChattyLLM/Message.vue index 236164954..f8ed203c9 100644 --- a/src/components/ChattyLLM/Message.vue +++ b/src/components/ChattyLLM/Message.vue @@ -201,6 +201,9 @@ export default { } }, getSourceString(source) { + if (source.startsWith('mcp_')) { + return t('assistant', 'MCP server: {tool_id}', { tool_id: source.substring('mcp_'.length) }) + } return this.informationSourceNames[source] ? this.informationSourceNames[source] : source }, },