What is the Data Calgary MCP server?
DataCalgary MCP — Calgary open data (data.calgary.ca, Socrata SODA API).
How to install Data Calgary
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"data-calgary": {
"url": "https://gateway.pipeworx.io/data-calgary/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"data-calgary": {
"serverUrl": "https://gateway.pipeworx.io/data-calgary/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"data-calgary": {
"type": "http",
"url": "https://gateway.pipeworx.io/data-calgary/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"data-calgary": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/data-calgary/mcp"
]
}
}
}Claude Code
claude mcp add --transport http data-calgary https://gateway.pipeworx.io/data-calgary/mcp