What is the Data Va MCP server?
Virginia Open Data (datahub.va.gov) Socrata MCP.
How to install Data Va
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-va": {
"url": "https://gateway.pipeworx.io/data-va/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"data-va": {
"serverUrl": "https://gateway.pipeworx.io/data-va/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"data-va": {
"type": "http",
"url": "https://gateway.pipeworx.io/data-va/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"data-va": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/data-va/mcp"
]
}
}
}Claude Code
claude mcp add --transport http data-va https://gateway.pipeworx.io/data-va/mcp