{
"mcpServers": {
"opengov-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 364 days ago. 12 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Opengov Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that enables MCP clients like Claude Desktop to access Socrata Open Data APIs. This integration allows Claude Desktop to search for, retrieve, and analyze public datasets from government data portals.
This MCP server provides access to open data from any Socrata-powered data portal, including those from cities, states, and federal agencies such as:
No API key is required for basic usage, as the server accesses public data.
With this MCP server, clients can:
The easiest way to use this MCP server is with npx, which doesn't require any installation:
Create or edit your Claude Desktop configuration:
Create or edit claude_desktop_config.json in your home directory:
{
"mcpServers": {
"opengov": {
"command": "npx",
"args": ["-y", "opengov-mcp-server@latest"],
"env": {
"DATA_PORTAL_URL": "https://data.cityofchicago.org"
}
}
}
}
You can replace the DATA_PORTAL_URL with any Socrata-powered data portal.
Restart Claude Desktop (if it was already running)
Start using the MCP server:
In Claude Desktop, you can now ask questions like:
How many cars were towed in Chicago this month?
and you can follow up with questions that drill further into detail:
Which make and color were towed the most?
Also, were there any interesting vanity plates?
The first time you run a query, npx will automatically download and run the latest version of the server.
If you prefer to run from source (for development or customization):
Clone this repository:
git clone https://github.com/srobbin/opengov-mcp-server.git
cd opengov-mcp-server
Install dependencies and build:
npm install
npm run build
Create Claude Desktop configuration:
Create or edit claude_desktop_config.json in your home directory:
{
"mcpServers": {
"opengov": {
"command": "node",
"args": [
"/path/to/your/opengov-mcp-server/dist/index.js"
],
"env": {
"DATA_PORTAL_URL": "https://data.cityofchicago.org"
}
}
}
}
Replace /path/to/your/opengov-mcp-server with the actual path where you cloned the repository.
Restart Claude Desktop (if it was already running)
This MCP server provides a unified get_data tool that Claude Desktop uses to access Socrata data.
type (string, required): Operation type
catalog: Search and list datasetscategories: List dataset categoriestags: List dataset tagsdataset-metadata: Get dataset detailscolumn-info: Get dataset column informationdata-access: Query and retrieve recordssite-metrics: Get portal statisticsdomain (string, optional): Data portal hostname (without protocol)
query (string, optional): Search query for datasets
datasetId (string): Dataset identifier for specific operations
soqlQuery (string, optional): SoQL query for filtering data
limit (number, optional): Maximum results to return (default: 10)
offset (number, optional): Results to skip for pagination (default: 0)
These are examples of how Claude Desktop wi