Umbra open SAR archive for VS Code
io.github.reesehammer/umbra-mcp
Search, preview, and measure Umbra open SAR from any MCP client. Umbra ships no search API.
client:VS Code
transport:stdio
runtime:pypi
Install Umbra open SAR archive in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "umbra-canopy-token",
"description": "UMBRA_CANOPY_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "umbra-index-db",
"description": "UMBRA_INDEX_DB",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
}
],
"servers": {
"umbra-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"umbra-py"
],
"env": {
"UMBRA_CANOPY_TOKEN": "${input:umbra-canopy-token}",
"UMBRA_INDEX_DB": "${input:umbra-index-db}",
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"OPENAI_API_KEY": "${input:openai-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs