converse-mcp-server 2.19.0 → 2.19.2

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": "2.19.0",
3
+ "version": "2.19.2",
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",
package/src/tools/chat.js CHANGED
@@ -1149,7 +1149,7 @@ chatTool.inputSchema = {
1149
1149
  model: {
1150
1150
  type: 'string',
1151
1151
  description:
1152
- 'AI model to use. Examples: "auto" (recommended), "codex", "gemini", "claude", "gpt-5", "grok-4-0709". Defaults to auto-selection.',
1152
+ 'AI model to use. Examples: "auto" (recommended), "codex", "gemini", "claude", "copilot", "copilot:codex". Defaults to auto-selection.',
1153
1153
  },
1154
1154
  files: {
1155
1155
  type: 'array',
@@ -1166,7 +1166,7 @@ chatTool.inputSchema = {
1166
1166
  continuation_id: {
1167
1167
  type: 'string',
1168
1168
  description:
1169
- 'Continuation ID for persistent conversation. Example: "chat_1703123456789_abc123". Custom IDs are accepted an unrecognized ID starts a new conversation under that ID. In async mode, IDs must contain only letters, numbers, hyphens, and underscores (max 128 chars).',
1169
+ 'Continuation ID for persistent conversation. Auto-generated in the first response; pass it back to continue the conversation.',
1170
1170
  },
1171
1171
  temperature: {
1172
1172
  type: 'number',
@@ -1705,7 +1705,7 @@ consensusTool.inputSchema = {
1705
1705
  items: { type: 'string' },
1706
1706
  minItems: 1,
1707
1707
  description:
1708
- 'List of models to consult. Example: ["codex", "gemini", "claude"]',
1708
+ 'List of models to consult. Examples: ["codex", "gemini", "claude", "copilot", "copilot:codex"]',
1709
1709
  },
1710
1710
  files: {
1711
1711
  type: 'array',
@@ -1722,7 +1722,7 @@ consensusTool.inputSchema = {
1722
1722
  continuation_id: {
1723
1723
  type: 'string',
1724
1724
  description:
1725
- 'Thread continuation ID for multi-turn conversations. Example: "consensus_1703123456789_xyz789". Custom IDs are accepted an unrecognized ID starts a new conversation under that ID. In async mode, IDs must contain only letters, numbers, hyphens, and underscores (max 128 chars).',
1725
+ 'Thread continuation ID for multi-turn conversations. Auto-generated in the first response; pass it back to continue the conversation.',
1726
1726
  },
1727
1727
  enable_cross_feedback: {
1728
1728
  type: 'boolean',
@@ -1747,7 +1747,7 @@ consensusTool.inputSchema = {
1747
1747
  type: 'string',
1748
1748
  enum: ['none', 'minimal', 'low', 'medium', 'high', 'max'],
1749
1749
  description:
1750
- 'Reasoning depth for thinking models. Examples: "none" (no reasoning, fastest - GPT-5.1+ only), "low" (light analysis), "medium" (balanced), "high" (complex analysis). Default: "medium"',
1750
+ 'Reasoning depth for thinking models. Examples: "none" (no reasoning, fastest), "low" (light analysis), "medium" (balanced), "high" (complex analysis). Default: "medium"',
1751
1751
  default: 'medium',
1752
1752
  },
1753
1753
  use_websearch: {