@j0hanz/code-review-analyst-mcp 1.0.2 → 1.0.3

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.
@@ -104,7 +104,7 @@ These instructions are available as a resource (internal://instructions) or prom
104
104
  - API credentials: Require `GEMINI_API_KEY` or `GOOGLE_API_KEY`.
105
105
  - Model selection: Uses `GEMINI_MODEL` if set; defaults to `gemini-2.5-flash`.
106
106
  - Diff size: Runtime limit defaults to 120,000 chars (`MAX_DIFF_CHARS` env override). Input schema max is 400,000 chars.
107
- - Timeout/retries: Per-call timeout defaults to 30,000 ms; retry count defaults to 1 with exponential backoff.
107
+ - Timeout/retries: Per-call timeout defaults to 45,000 ms; retry count defaults to 1 with exponential backoff.
108
108
  - Output tokens: `maxOutputTokens` defaults to 16,384 to prevent unbounded responses.
109
109
  - Safety config: Gemini safety thresholds default to `BLOCK_NONE` for configured harm categories and can be overridden with `GEMINI_HARM_BLOCK_THRESHOLD` (`BLOCK_NONE`, `BLOCK_ONLY_HIGH`, `BLOCK_MEDIUM_AND_ABOVE`, `BLOCK_LOW_AND_ABOVE`).
110
110
  - Resource scope: Only `internal://instructions` is registered as a resource; no dynamic resource templates are exposed.
@@ -9,7 +9,7 @@ function getDefaultModel() {
9
9
  return process.env.GEMINI_MODEL ?? 'gemini-2.5-flash';
10
10
  }
11
11
  const DEFAULT_MAX_RETRIES = 1;
12
- const DEFAULT_TIMEOUT_MS = 30_000;
12
+ const DEFAULT_TIMEOUT_MS = 45_000;
13
13
  const DEFAULT_MAX_OUTPUT_TOKENS = 16_384;
14
14
  const RETRY_DELAY_BASE_MS = 300;
15
15
  const RETRY_DELAY_MAX_MS = 5_000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@j0hanz/code-review-analyst-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "mcpName": "io.github.j0hanz/code-review-analyst",
5
5
  "description": "Gemini-powered MCP server for code review analysis.",
6
6
  "type": "module",