diff --git a/src/components/ChattyLLM/Message.vue b/src/components/ChattyLLM/Message.vue index 23616495..f8ed203c 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 }, },