geoservercloud-mcp 0.2.0.dev2__tar.gz → 0.3.0__tar.gz
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.
- {geoservercloud_mcp-0.2.0.dev2 → geoservercloud_mcp-0.3.0}/PKG-INFO +26 -1
- {geoservercloud_mcp-0.2.0.dev2 → geoservercloud_mcp-0.3.0}/README.md +25 -0
- {geoservercloud_mcp-0.2.0.dev2 → geoservercloud_mcp-0.3.0}/pyproject.toml +1 -1
- {geoservercloud_mcp-0.2.0.dev2 → geoservercloud_mcp-0.3.0}/LICENSE +0 -0
- {geoservercloud_mcp-0.2.0.dev2 → geoservercloud_mcp-0.3.0}/geoservercloud_mcp/__init__.py +0 -0
- {geoservercloud_mcp-0.2.0.dev2 → geoservercloud_mcp-0.3.0}/geoservercloud_mcp/server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geoservercloud-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: MCP (Model Context Protocol) server for GeoServer - enables AI assistants to manage GeoServer workspaces, datastores, layers, and styles through natural language
|
|
5
5
|
License: BSD-2-Clause
|
|
6
6
|
License-File: LICENSE
|
|
@@ -117,6 +117,31 @@ Add to your Claude Desktop config:
|
|
|
117
117
|
|
|
118
118
|
Restart Claude Desktop after saving the configuration.
|
|
119
119
|
|
|
120
|
+
### Claude Code
|
|
121
|
+
|
|
122
|
+
Add the server with the `claude mcp add` command:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
claude mcp add geoserver \
|
|
126
|
+
--env GEOSERVER_URL=http://localhost:8080/geoserver \
|
|
127
|
+
--env GEOSERVER_USER=admin \
|
|
128
|
+
--env GEOSERVER_PASSWORD=geoserver \
|
|
129
|
+
-- uvx geoservercloud-mcp
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
This adds it at the default _local_ (per-project) scope. Use `--scope user` to make
|
|
133
|
+
it available in all your projects, or `--scope project` to write it to a shared
|
|
134
|
+
`.mcp.json` committed in the repo. Omit the `--env` flags to configure the connection
|
|
135
|
+
at runtime instead (the AI will ask for the URL and credentials).
|
|
136
|
+
|
|
137
|
+
Manage it with:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
claude mcp list
|
|
141
|
+
claude mcp get geoserver
|
|
142
|
+
claude mcp remove geoserver
|
|
143
|
+
```
|
|
144
|
+
|
|
120
145
|
### Dynamic Configuration (No Hardcoded Credentials)
|
|
121
146
|
|
|
122
147
|
You can omit the `env` section entirely. The AI will ask you for the GeoServer URL, username, and password at runtime:
|
|
@@ -94,6 +94,31 @@ Add to your Claude Desktop config:
|
|
|
94
94
|
|
|
95
95
|
Restart Claude Desktop after saving the configuration.
|
|
96
96
|
|
|
97
|
+
### Claude Code
|
|
98
|
+
|
|
99
|
+
Add the server with the `claude mcp add` command:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
claude mcp add geoserver \
|
|
103
|
+
--env GEOSERVER_URL=http://localhost:8080/geoserver \
|
|
104
|
+
--env GEOSERVER_USER=admin \
|
|
105
|
+
--env GEOSERVER_PASSWORD=geoserver \
|
|
106
|
+
-- uvx geoservercloud-mcp
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
This adds it at the default _local_ (per-project) scope. Use `--scope user` to make
|
|
110
|
+
it available in all your projects, or `--scope project` to write it to a shared
|
|
111
|
+
`.mcp.json` committed in the repo. Omit the `--env` flags to configure the connection
|
|
112
|
+
at runtime instead (the AI will ask for the URL and credentials).
|
|
113
|
+
|
|
114
|
+
Manage it with:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
claude mcp list
|
|
118
|
+
claude mcp get geoserver
|
|
119
|
+
claude mcp remove geoserver
|
|
120
|
+
```
|
|
121
|
+
|
|
97
122
|
### Dynamic Configuration (No Hardcoded Credentials)
|
|
98
123
|
|
|
99
124
|
You can omit the `env` section entirely. The AI will ask you for the GeoServer URL, username, and password at runtime:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "geoservercloud-mcp"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "MCP (Model Context Protocol) server for GeoServer - enables AI assistants to manage GeoServer workspaces, datastores, layers, and styles through natural language"
|
|
5
5
|
authors = ["Ronit Jadhav <ronit.jadhav@camptocamp.com>"]
|
|
6
6
|
license = "BSD-2-Clause"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|