geoservercloud mcp for VS Code
io.github.ronitjadhav/geoservercloud-mcp
MCP server for managing GeoServer workspaces, datastores, layers, and styles
client:VS Code
transport:stdio
runtime:pypi
Install geoservercloud mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "geoserver-url",
"description": "GEOSERVER_URL",
"password": true
},
{
"type": "promptString",
"id": "geoserver-user",
"description": "GEOSERVER_USER",
"password": true
},
{
"type": "promptString",
"id": "geoserver-password",
"description": "GEOSERVER_PASSWORD",
"password": true
}
],
"servers": {
"geoservercloud-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"geoservercloud-mcp"
],
"env": {
"GEOSERVER_URL": "${input:geoserver-url}",
"GEOSERVER_USER": "${input:geoserver-user}",
"GEOSERVER_PASSWORD": "${input:geoserver-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs