Skip to content

Commit d598c22

Browse files
authored
Merge pull request #6 from jtpio/gemini-readme
Add Gemini CLI configuration
2 parents 921f0ae + b6d7dad commit d598c22

File tree

1 file changed

+24
-7
lines changed

1 file changed

+24
-7
lines changed

README.md

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This extension provides a simplified, trait-based approach to exposing Jupyter f
1717
## Installation
1818

1919
```bash
20-
pip install -e .
20+
pip install jupyter-server-mcp
2121
```
2222

2323
## Quick Start
@@ -61,16 +61,33 @@ The MCP server will start automatically on `http://localhost:8080/mcp`.
6161
### 3. Connect MCP Clients
6262

6363
**Claude Code Configuration:**
64+
65+
Set the following configuration:
66+
67+
```json
68+
"mcpServers": {
69+
"jupyter-mcp": {
70+
"type": "http",
71+
"url": "http://localhost:8085/mcp"
72+
}
73+
}
74+
```
75+
76+
Or use the `claude` CLI:
77+
78+
```bash
79+
claude mcp add --transport http jupyter-mcp http://localhost:8080/mcp
80+
```
81+
82+
**Gemini CLI Configuration:**
83+
84+
Add the following to `.gemini/settings.json`:
85+
6486
```json
6587
{
6688
"mcpServers": {
6789
"jupyter-mcp": {
68-
"command": "python",
69-
"args": ["-c", "pass"],
70-
"transport": {
71-
"type": "http",
72-
"url": "http://localhost:8080/mcp"
73-
}
90+
"httpUrl": "http://localhost:8080/mcp"
7491
}
7592
}
7693
}

0 commit comments

Comments
 (0)