converse-mcp-server 1.8.0 → 1.8.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -203,6 +203,7 @@ OPENROUTER_API_KEY=sk-or-your_openrouter_key_here
203
203
  PORT=3157
204
204
  LOG_LEVEL=info
205
205
  MAX_MCP_OUTPUT_TOKENS=200000
206
+ MCP_TOOL_TIMEOUT=5400000 # For deep research models (90 minutes)
206
207
 
207
208
  # Optional: OpenRouter configuration
208
209
  OPENROUTER_REFERER=https://github.com/FallDownTheSystem/converse
@@ -217,6 +218,7 @@ OPENROUTER_DYNAMIC_MODELS=true
217
218
  | `PORT` | Server port | `3157` | `3157` |
218
219
  | `LOG_LEVEL` | Logging level | `info` | `debug`, `info`, `error` |
219
220
  | `MAX_MCP_OUTPUT_TOKENS` | Token response limit | `25000` | `200000` |
221
+ | `MCP_TOOL_TIMEOUT` | Tool execution timeout (ms) | `120000` | `5400000` (90 min) |
220
222
 
221
223
  ### Model Selection
222
224
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "converse-mcp-server",
3
- "version": "1.8.0",
3
+ "version": "1.8.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",