converse-mcp-server 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "converse-mcp-server",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Converse MCP Server - Converse with other LLMs with chat and consensus tools",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -210,8 +210,7 @@ export async function consensusTool(args, dependencies) {
210
210
  provider: call.provider,
211
211
  status: 'success',
212
212
  response: response.content,
213
- metadata: response.metadata || {},
214
- rawResponse: response.rawResponse
213
+ metadata: response.metadata || {}
215
214
  };
216
215
  } catch (error) {
217
216
  return {
@@ -346,7 +345,7 @@ Please provide your refined response:`;
346
345
  // Continue even if save fails
347
346
  }
348
347
 
349
- // Build result object
348
+ // Build result object keeping backward compatibility but removing rawResponse
350
349
  const result = {
351
350
  status: 'consensus_complete',
352
351
  models_consulted: models.length,