This repository was archived by the owner on May 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
76 lines (76 loc) · 2.45 KB
/
Copy pathserver.json
File metadata and controls
76 lines (76 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.hampsterx/gemini-mcp-bridge",
"description": "Wraps Gemini CLI as MCP tools: query, structured, search, fetch-chunk, ping.",
"repository": {
"url": "https://github.com/hampsterx/gemini-mcp-bridge",
"source": "github"
},
"version": "0.8.0",
"packages": [
{
"registryType": "npm",
"identifier": "gemini-mcp-bridge",
"version": "0.8.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "GEMINI_CLI_PATH",
"description": "Path to the gemini CLI binary. Defaults to 'gemini' on PATH.",
"format": "string",
"isRequired": false,
"default": "gemini"
},
{
"name": "GEMINI_DEFAULT_MODEL",
"description": "Default Gemini model for query/structured/search.",
"format": "string",
"isRequired": false
},
{
"name": "GEMINI_FALLBACK_MODEL",
"description": "Model to use when the primary model hits a quota or availability error.",
"format": "string",
"isRequired": false
},
{
"name": "GEMINI_MAX_CONCURRENT",
"description": "Maximum concurrent Gemini CLI subprocesses (default 3).",
"format": "number",
"isRequired": false,
"default": "3"
},
{
"name": "GEMINI_MIN_INVOCATION_GAP_MS",
"description": "Minimum milliseconds between consecutive CLI spawns, used to avoid rate-limit bursts.",
"format": "number",
"isRequired": false,
"default": "5000"
},
{
"name": "GEMINI_SPAWN_JITTER_MAX_MS",
"description": "Upper bound of random jitter added to each CLI spawn to spread load.",
"format": "number",
"isRequired": false,
"default": "200"
},
{
"name": "GEMINI_API_KEY",
"description": "API key for Gemini. Alternative to GOOGLE_API_KEY or OAuth login.",
"format": "string",
"isRequired": false,
"isSecret": true
},
{
"name": "GOOGLE_API_KEY",
"description": "Google API key for Gemini. Alternative to GEMINI_API_KEY or OAuth login.",
"format": "string",
"isRequired": false,
"isSecret": true
}
]
}
]
}