Canadian gov data for AI agents: property, permits, zoning, census, registry, DLS. 50 free/day.
Canadian government data for AI agents. Property assessments, building permits, zoning, business registry, DLS grid conversion — 50 free queries/day, no signup.
uvx clevertech-mcp-server
Add to your ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"clevertech": {
"command": "uvx",
"args": ["clevertech-mcp-server"]
}
}
}
Add to your MCP configuration:
{
"mcpServers": {
"clevertech": {
"command": "uvx",
"args": ["clevertech-mcp-server"]
}
}
}
{
"mcpServers": {
"clevertech": {
"command": "uvx",
"args": ["clevertech-mcp-server"]
}
}
}
uvx clevertech-mcp-server
| Tool | Description |
|---|---|
dls_convert | GPS ↔ Dominion Land Survey (DLS) coordinate conversion for Western Canada |
dls_batch | Batch GPS ↔ DLS conversion — up to 100 coordinates at once |
property_search | Property assessment search by address across 13+ Canadian cities |
property_report | Consolidated property report — assessment, permits, zoning, and DLS in one call |
property_by_roll | Direct property lookup by roll number — faster than address search |
building_permit_search | Building permit search by address, contractor, applicant, or permit number |
building_permit_recent | Recently issued building permits feed — monitor new construction activity |
zoning_lookup | Zoning district lookup by GPS coordinates or street address |
business_registry_search | Federal corporation search — find Canadian businesses by name, province, or city |
reverse_geocode | GPS → address, city, neighborhood, province, and DLS grid reference |
list_cities | Discover available cities, their API capabilities, and property counts |
20 cities across Canada — and growing:
| Province | Cities |
|---|---|
| Alberta | Calgary, Edmonton, High River |
| British Columbia | Vancouver, Victoria |
| Ontario | Toronto, Ottawa, Hamilton, Kitchener, London, Mississauga, Markham, Vaughan |
| Quebec | Montreal, Quebec City |
| Manitoba | Winnipeg |
| Saskatchewan | Saskatoon, Regina |
| Nova Scotia | Halifax |
| Newfoundland | St. John's |
Use list_cities to see live availability, API capabilities per city, and property counts.
No signup required to start. Free tier gives you 50 queries/day out of the box.
| Tier | Queries/Day | Price | API Key |
|---|---|---|---|
| Free | 50 | $0 | Not required |
| Developer | 200 | Free | Sign up → |
| Pro | 2,000 | $10/mo | Sign up → |
| Enterprise | 10,000 | $40/mo | Sign up → |
Set the CLEVERTECH_API_KEY environment variable (recommended):
export CLEVERTECH_API_KEY=your_key_here
uvx clevertech-mcp-server
Or pass it as a CLI flag:
uvx clevertech-mcp-server --api-key YOUR_KEY
To get a new key, use device login:
uvx clevertech-mcp-server --login
This opens a browser for Google sign-in, then prints your API key with instructions for setting the environment variable (RFC 8628 device flow). The key is not saved to disk — you configure it in your MCP client.
# Clone and set up
git clone https://github.com/clevertechca/Clevertech-mcp-server.git
cd Clevertech-mcp-server
uv sync
# Run locally (stdio transport)
uv run clevertech-mcp-server
# Run with --login to get an API key
uv run clevertech-mcp-server --login
# Run with SSE transport (for HTTP-based agents)
uv run clevertech-mcp-server --transport sse --port 8000
uv run pytest
src/clevertech_mcp/
├── tools/
│ ├── property.py # property_search, property_report, property_by_roll
│ ├── building.py # building_permit_search, building_permit_recent
│ ├── zoning.py # zoning_lookup
│ ├── dls.py # dls_convert, dls_batch
│ ├── business.py # business_registry_search
│ ├── geo.py # reverse_geocode
│ └── meta.py # list_cities
├── server.py # FastMCP server entry point
├── client.py # HTTP client for CleverTech API
├── auth.py # API key authentication
├── rate_limit.py # Rate limiting
└── config.py # Configuration management
MIT © 2026 CleverTech — see LICENSE for details.
Source-derived launch command. Check the maintainer’s required arguments and credentials before running:
uvx clevertech-mcp-serverMerge this template into ~/Library/Application Support/Claude/claude_desktop_config.json. Keep existing servers. Add any arguments, credentials, and permissions required by the maintainer; this template has not been install-tested.
{
"mcpServers": {
"ca-clevertech-clevertech-mcp-server": {
"command": "uvx",
"args": [
"clevertech-mcp-server"
]
}
}
}Restart Claude Desktop completely for changes to take effect. Confirm the server appears connected in the client’s tool list, then try a read-only example from its documentation.
Claude Desktop setup referenceclevertech-mcp-serverpypiCleverTech works with any MCP-compatible client. Copy the config snippet from the Configuration section above and add it to the file shown for your client, then restart the application.
~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop completely for changes to take effect.~/.cursor/mcp.jsonRestart Cursor for changes to take effect..vscode/mcp.jsonReload VS Code window for changes to take effect.~/.codeium/windsurf/mcp_config.jsonRestart Windsurf for changes to take effect..mcp.jsonSave at the project root, then start Claude Code in that project and review the MCP server approval prompt. Keep real credentials out of shared files.