CleverTech for VS Code
ca.clevertech/clevertech-mcp-server
Canadian gov data for AI agents: property, permits, zoning, census, registry, DLS. 50 free/day.
client:VS Code
transport:stdio
runtime:pypi
Install CleverTech in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clevertech-api-key",
"description": "CLEVERTECH_API_KEY",
"password": true
}
],
"servers": {
"clevertech-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"clevertech-mcp-server"
],
"env": {
"CLEVERTECH_API_KEY": "${input:clevertech-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