You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-6Lines changed: 21 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Thanks
24
24
25
25
To install the Planet MCP server, use `pip` or your preferred package manager:
26
26
27
-
```
27
+
```bash
28
28
pip install planet-mcp
29
29
```
30
30
@@ -57,9 +57,24 @@ To connect with [Claude Code](https://claude.ai/code), run the following command
57
57
claude mcp add planet planet-mcp
58
58
```
59
59
60
+
#### Claude Desktop
61
+
62
+
To connect using Claude Desktop, add the following to your `claude_desktop_config.json` file (see [MCP documentation](https://modelcontextprotocol.io/docs/develop/connect-local-servers) for more details):
63
+
64
+
```json
65
+
{
66
+
"mcpServers": {
67
+
"planet": {
68
+
"type": "stdio",
69
+
"command": "planet-mcp"
70
+
}
71
+
}
72
+
}
73
+
```
74
+
60
75
#### Gemini CLI
61
76
62
-
Add the following to your `~/.gemini/settings.json` file:
77
+
To connect using [Gemini CLI](https://geminicli.com/docs/get-started/configuration/#example-settingsjson), add the following to your `~/.gemini/settings.json` file:
63
78
64
79
```json
65
80
"mcpServers": {
@@ -80,10 +95,10 @@ To connect using GitHub Copilot, configure the `mcp.json` file (see [VSCode docs
80
95
{
81
96
"servers": {
82
97
"planet": {
98
+
"type": "stdio",
83
99
"command": "planet-mcp"
84
100
}
85
-
},
86
-
"inputs": []
101
+
}
87
102
}
88
103
```
89
104
@@ -94,7 +109,7 @@ If you'd like, you can enable or disable specific tools in the MCP server. For e
94
109
If you want to keep the defaults, but disable a certain tool, you can: `--exclude-tags=destinations`
95
110
96
111
In order to disable more than one tool you can provide a comma separated list like:
97
-
`--exclude-tags=destinations,moasics`
112
+
`--exclude-tags=destinations,mosaics`
98
113
99
114
By default, we have disabled download tools and the subscriptions tools, as we have found those tools don't work very well with LLMs at the moment.
100
115
@@ -127,7 +142,7 @@ This is likely due to the `planet-mcp` package being installed to a different Py
127
142
128
143
### Prerequisites
129
144
130
-
* python (>= 3.10) + uv
145
+
* python (>= 3.11) + uv
131
146
* npx + friends (node >= 20) (to run inspector, if desired)
0 commit comments