From 00b11715959c576ccba855cd831d46edcfe0648f Mon Sep 17 00:00:00 2001 From: josedario87 Date: Thu, 5 Jun 2025 02:21:36 -0600 Subject: [PATCH] usando el mcp siempre ya no se necesita lllamar /planilla --- conversation-layer-agent/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conversation-layer-agent/src/index.ts b/conversation-layer-agent/src/index.ts index f602cdc..1f2eb03 100644 --- a/conversation-layer-agent/src/index.ts +++ b/conversation-layer-agent/src/index.ts @@ -44,7 +44,8 @@ app.post('/', async (req, res) => { try { const contents = `Repo information: ${repoInfo}\nUser message: ${message}`; const config: any = {}; - if (message.toLowerCase().includes('/planilla')) { + // if (message.toLowerCase().includes('/planilla')) { + if (true) { console.log('Using Model Context Protocol tools ', MCP_URL); const client = await getMcpClient(); config.tools = [mcpToTool(client)];