city-of-vancouver-open-data-mcp
v2.1.1
Published
MCP server wrapping Explore API
Maintainers
Readme
Explore API MCP Server
An MCP server for querying the City of Vancouver Open Data portal via the Explore API v2.1.
Setup
VS Code
Add the following to your .vscode/mcp.json:
{
"servers": {
"CityOfVancouverDataExplorer": {
"type": "stdio",
"command": "npx",
"args": ["-y", "city-of-vancouver-open-data-mcp"],
"env": {
"API_KEY": "your_api_key_here"
}
}
}
}Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"CityOfVancouverDataExplorer": {
"command": "npx",
"args": ["-y", "city-of-vancouver-open-data-mcp"],
"env": {
"API_KEY": "your_api_key_here"
}
}
}
}Environment Variables
| Variable | Description | Default |
|---|---|---|
| API_KEY | Mandatory API key for authenticated access | — |
You can get an API key by creating an account at https://opendata.vancouver.ca/account/.
Available Tools
| Tool | Description |
|---|---|
| getDatasets | Query catalog datasets |
| getDataset | Show dataset information |
| getDatasetsFacets | List catalog facet values |
| getRecords | Query dataset records |
| getRecord | Read a dataset record |
| getRecordsFacets | List dataset facets |
| getDatasetAttachments | List dataset attachments |
| listExportFormats | List catalog export formats |
| listDatasetExportFormats | List dataset export formats |
| exportDatasets | Export a catalog |
| exportCatalogCSV | Export a catalog in CSV |
| exportCatalogDCAT | Export a catalog in RDF/XML (DCAT) |
| exportRecords | Export a dataset |
| exportRecordsCSV | Export a dataset in CSV |
| exportRecordsParquet | Export a dataset in Parquet |
| exportRecordsGPX | Export a dataset in GPX |
