@danwahl/gemini-cli-mcp 0.1.0 → 0.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/README.md +6 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,18 +31,20 @@ npm run build
|
|
|
31
31
|
|
|
32
32
|
## Configuration
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
**User install** (available across all projects):
|
|
35
35
|
|
|
36
36
|
```sh
|
|
37
|
-
claude mcp add gemini npx @danwahl/gemini-cli-mcp
|
|
37
|
+
claude mcp add --scope user gemini npx -- -y @danwahl/gemini-cli-mcp
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
**Project install** (shared with your team via `.mcp.json`):
|
|
41
41
|
|
|
42
42
|
```sh
|
|
43
|
-
claude mcp add gemini
|
|
43
|
+
claude mcp add --scope project gemini npx -- -y @danwahl/gemini-cli-mcp
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
+
Or from source, replace `npx @danwahl/gemini-cli-mcp` with `node /absolute/path/to/gemini-cli-mcp/cli.js`.
|
|
47
|
+
|
|
46
48
|
Verify with `claude mcp list`.
|
|
47
49
|
|
|
48
50
|
## Tool: `cli`
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danwahl/gemini-cli-mcp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"description": "MCP server that exposes Gemini CLI as a single tool for Claude Code",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"keywords": ["mcp", "gemini", "claude", "llm", "ai"],
|
|
12
12
|
"engines": { "node": ">=18" },
|
|
13
|
-
"bin": "./cli.js",
|
|
13
|
+
"bin": { "gemini-cli-mcp": "./cli.js" },
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsdown src/index.ts",
|
|
16
16
|
"test": "node --import tsx/esm --test src/index.test.ts",
|