OpenGov MCP Server
Access Socrata Open Data APIs from government data portals.
OpenGov MCP Server
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.
Overview
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.
Features
With this MCP server, clients can:
- Search and discover datasets by keyword, category, or tags
- View dataset metadata and column information
- Run SQL-like queries to retrieve and analyze data
- Get portal usage statistics
Installation for Claude Desktop
Quick Setup with npx (Recommended)
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.jsonin 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.
Manual Installation from Source
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.jsonin 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-serverwith the actual path where you cloned the repository. -
Restart Claude Desktop (if it was already running)
Available Tool: get_data
This MCP server provides a unified get_data tool that Claude Desktop uses to access Socrata data.
Parameters
-
type(string, required): Operation typecatalog: 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 statistics
-
domain(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)
Example Queries
These are examples of how Claude Desktop will format queries to the MCP server:
// Find datasets about budgets
{
"type": "catalog",
"query": "budget",
"limit": 5
}
// Get information about a dataset
{
"type": "dataset-metadata",
"datasetId": "6zsd-86xi"
}
// Query dataset records with SQL-like syntax
{
"type": "data-access",
"datasetId": "6zsd-86xi",
"soqlQuery": "SELECT * WHERE amount > 1000 ORDER BY date DESC",
"limit": 10
}
Configuration Options
The server requires one environment variable:
DATA_PORTAL_URL: The Socrata data portal URL (e.g.,https://data.cityofchicago.org)
This can be set:
- In the Claude Desktop configuration (recommended)
- In your environment variables
- Via command line:
DATA_PORTAL_URL=https://data.cityofchicago.org opengov-mcp-server
Serveurs connexes
CData Connect Cloud
Query and manage data through CData Connect Cloud, providing a unified interface to various data sources.
SQL Server for MySQL, PostgreSQL, and SQLite
A server for making queries to MySQL, PostgreSQL, and SQLite databases.
engram-rs-mcp
MCP server for engram — persistent, brain-like memory for AI agents.
SQLite
MCP server for SQLite files. Supports Datasette-compatible metadata!
MCP Registry - Lyra
Lyra Registry is a standalone API service that catalogs, scores, and serves metadata for all tools in the Lyra ecosystem. It enables discovery, evaluation, and integration of 800+ crypto, blockchain, DeFi, memecoin, NFT, metaverse, trading tools, MCP tools.
Fireproof JSON DB Collection Server
Manage multiple Fireproof JSON document databases with cloud sync capabilities.
PostgreSQL Full Access MCP Server
A full-access PostgreSQL server for MCP with read/write capabilities and enhanced schema metadata.
Gremlin
Interact with any Gremlin-compatible graph database using natural language, with support for schema discovery, complex queries, and data import/export.
Gralio SaaS Database
Access a comprehensive database of over 30,000 SaaS products, including reviews, pricing, alternatives, and growth metrics.
Pinot MCP Server
An MCP server for interacting with Apache Pinot, a real-time distributed OLAP datastore.