leaseclear mcp for VS Code
io.github.amadeuserras/leaseclear-mcp
MCP server for LeaseClear lease Q&A.
client:VS Code
transport:stdio
runtime:pypi
Install leaseclear mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "leaseclear-api-key",
"description": "LEASECLEAR_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "leaseclear-api-url",
"description": "LEASECLEAR_API_URL",
"password": true
}
],
"servers": {
"leaseclear-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"leaseclear-mcp"
],
"env": {
"LEASECLEAR_API_KEY": "${input:leaseclear-api-key}",
"LEASECLEAR_API_URL": "${input:leaseclear-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs