Mindcase for VS Code
io.github.mindcase-co/mindcase
Access 30+ data collection agents from Claude with natural language.
client:VS Code
transport:stdio
runtime:pypi
Install Mindcase in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mindcase-api-key",
"description": "MINDCASE_API_KEY",
"password": true
}
],
"servers": {
"mindcase": {
"type": "stdio",
"command": "uvx",
"args": [
"mindcase-mcp"
],
"env": {
"MINDCASE_API_KEY": "${input:mindcase-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