socrata-mcp
The socrata-mcp server provides typed, cached access to Socrata civic open-data portals, enabling dataset discovery, querying, profiling, and export without unnecessarily downloading full datasets.
Search Datasets: Full-text catalog search across Socrata portals, with filtering by domain or category.
Get Dataset Metadata: Retrieve column names/types, row count, update frequency, license, attribution, and tags for a specific dataset.
Query Data: Run structured SoQL queries (
select,where,group by,order,limit,offset) or raw SoQL strings, with geospatial filters (within_circle,within_box). Results include atruncatedflag.Profile Datasets: Server-side per-column statistics — null rates, distinct counts, min/max, averages, and top categorical values — without downloading the full dataset.
Sample Rows: Fetch the first N rows (up to 100) to quickly inspect real values.
Export to CSV: Stream and page query results to a CSV file, supporting the same SoQL parameters as
query, with a configurable row cap (default 1,000,000).Generate HTML Reports: Create self-contained reports with trend charts, top-category charts, numeric summaries, and data-quality flags.
Additional features include disk-based caching, request throttling with retry/backoff, hard row caps, and optional app token support for higher portal rate limits.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@socrata-mcpsearch for crime datasets on data.seattle.gov"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
socrata-mcp
An MCP server that gives LLM agents typed, cached access to civic open-data portals. Speaks Socrata (SODA 2.1 + Discovery API) today; the provider layer is a thin interface so CKAN can be added later without touching the tool surface.
Highlights:
Server-side profiling — null rates, distinct counts, min/max, top values computed via aggregate SoQL; the dataset is never downloaded.
Hard row caps with honest truncation — every query result carries a
truncatedflag; paging uses a stable:idorder.Disk cache under
~/.socrata-mcp/cachekeyed by query hash, with short TTLs for metadata and configurable TTLs for query results.Polite by default — request throttling, retries with backoff that honor
Retry-After, optionalSOCRATA_APP_TOKENsent asX-App-Token.Loud failures — the portal's actual error message is surfaced to the agent, never swallowed.
Tableau-ready CSV export — streamed, paged download designed to chain into vizforge's
csv_to_dashboard.
Install
git clone <this repo> && cd socrata-mcp
python3 -m venv .venv
.venv/bin/pip install -e ".[dev]"Register with your MCP client (see .mcp.json.example):
{
"mcpServers": {
"socrata": {
"command": "/absolute/path/to/socrata-mcp/.venv/bin/python",
"args": ["-m", "socrata_mcp"],
"env": { "SOCRATA_APP_TOKEN": "optional-app-token" }
}
}
}Related MCP server: ontario-data-mcp
Tools
Tool | What it does |
| Full-text catalog search via the Socrata Discovery API. |
| Columns with types, row count, update cadence, license, attribution. |
| Structured SoQL ( |
| Per-column null rates, distinct counts, min/max for dates/numbers, top values for categoricals — all portal-side. |
| First n rows (capped at 100) to see real values. |
| Streamed, paged CSV export of any query. |
| One-call HTML report: auto-detected trend chart, top-category charts, numeric summary, data-quality flags. Self-contained file, no JS, no external requests. Also available without MCP: |
Example agent flow:
search_datasets("crime", domain="data.seattle.gov")
get_dataset("data.seattle.gov", "tazs-3rd5")
profile_dataset("data.seattle.gov", "tazs-3rd5")
query("data.seattle.gov", "tazs-3rd5",
where="offense_date > '2026-06-10T00:00:00'",
order="offense_date DESC", limit=100)
export_csv("data.seattle.gov", "tazs-3rd5", "out/spd_30d.csv",
where="offense_date > '2026-06-10T00:00:00'")
# → vizforge: csv_to_dashboard("out/spd_30d.csv", ...)Configuration
All optional, via environment variables:
Variable | Default | Meaning |
| unset | Sent as |
|
| Disk cache root. |
|
| Seconds to cache dataset metadata. |
|
| Seconds to cache catalog searches. |
|
| Seconds to cache query/profile results ( |
|
| Rows returned when a query gives no limit. |
|
| Hard row cap for inline query results. |
|
| Hard row cap for CSV exports. |
|
| Rows fetched per HTTP request. |
|
| Minimum seconds between portal requests. |
|
| Per-request timeout in seconds. |
Cache layout: cache/<kind>/<sha256>.json (kind ∈ catalog, metadata, query,
profile), each file {"cached_at": <epoch>, "data": …}. Deleting the directory
is always safe.
Notes:
Discovery searches use the US endpoint (
api.us.socrata.com); EU-hosted portals are still directly queryable viaget_dataset/queryon their domain.Raw
soqlexports run as a single request, so give them an explicitLIMIT(default cap 50,000); structured exports page automatically.
Development
.venv/bin/pytest # unit tests (all HTTP mocked)
.venv/bin/pytest -m network # live smoke tests against data.seattle.govArchitecture: deterministic core (soql.py, cache.py, http_client.py,
profile.py, export.py) with the MCP layer (socrata_mcp/mcp/) as thin
wrappers over a Provider interface (providers/base.py). To add CKAN,
implement Provider in providers/ckan.py — the tool surface stays unchanged.
License
MIT — see LICENSE.
Available Tools
6 toolsexport_csvA
Export query results to a Tableau-ready CSV via streamed, paged download.
Accepts the same query parameters as query (structured or raw soql)
and writes matching rows to out_path. Designed to chain into vizforge's
csv_to_dashboard. Point/location values are serialized as JSON strings.
Args:
domain: Portal hostname, e.g. "data.seattle.gov".
dataset_id: Socrata 4x4 id, e.g. "tazs-3rd5".
out_path: Destination .csv path (parent directories are created).
select/where/group/order/limit/soql/within_circle/within_box: as in query.
max_rows: Safety cap for this export (default 1,000,000).
Returns: {path, rows_written, truncated, columns, notes}.
| Name | Required | Description | Default |
|---|---|---|---|
| soql | No | ||
| group | No | ||
| limit | No | ||
| order | No | ||
| where | No | ||
| domain | Yes | ||
| select | No | ||
| max_rows | No | ||
| out_path | Yes | ||
| dataset_id | Yes | ||
| within_box | No | ||
| within_circle | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses details: streamed/paged download, writes to out_path, parent directories created, max_rows safety cap (default 1M), and point/location serialization as JSON strings. The return value structure is also described, providing complete behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the main purpose and is fairly concise. The Args section is a bit verbose but still functional. Every sentence adds value, though the parameter list could be more succinct by relying on the schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (12 params, 0% schema coverage, no annotations, but an output schema exists), the description covers purpose, usage, behavioral traits, and return structure. It references another tool for query parameters, which is acceptable but requires the agent to understand `query`. Overall, it is complete enough for correct usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It lists parameters and refers to `query` for most, but provides no individual descriptions or syntax beyond examples (e.g., domain and dataset_id examples). This is insufficient for an agent to understand parameter meanings without prior knowledge.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool exports query results to a Tableau-ready CSV via streamed download, distinguishing it from sibling tools like `query` which likely returns JSON. It specifies the output is a file and mentions chaining into vizforge.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates that the tool accepts the same query parameters as `query` and is designed for chaining into `csv_to_dashboard`, which provides context on when to use it. However, it does not explicitly state when not to use or provide alternatives, though the sibling list and purpose imply differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_datasetA
Dataset metadata: columns with types, row count, update cadence, license.
Args: domain: Portal hostname, e.g. "data.seattle.gov". dataset_id: Socrata 4x4 id, e.g. "tazs-3rd5".
Returns: {name, description, columns: [{field_name, name, type, description}], row_count, license, attribution, created_at, data_updated_at, update_frequency, tags, source_url}. Use columns' field_name values in query/profile calls.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| dataset_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the return structure truthfully, implying a read-only operation with no side effects. It could mention authentication requirements, but the omission is acceptable for a simple metadata tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a concise summary, then structured into Args and Returns sections. Every sentence adds value; no tautology or verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists, the description still elaborates return fields and ties them to sibling tools ('Use columns field_name values in query/profile calls'). This fully informs the agent of the tool's role within the suite.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description adds essential meaning: it gives concrete examples for both domain and dataset_id, explains their format, and provides full context beyond the schema's type-only definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Dataset metadata: columns with types, row count, update cadence, license,' specifying the verb and resource. It implicitly distinguishes from siblings by focusing on metadata retrieval, not exporting, profiling, querying, sampling, or searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides parameter examples and notes to use column field_names in query/profile calls, guiding usage. However, it does not explicitly state when to choose this tool over siblings, though context is implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
profile_datasetA
Profile every column: null rate, distinct count, min/max, top values.
Computed portal-side via aggregate SoQL — the dataset is never downloaded. Dates and numbers get min/max (numbers also avg); low-cardinality text columns get their top 10 values with counts.
Args: domain: Portal hostname, e.g. "data.seattle.gov". dataset_id: Socrata 4x4 id, e.g. "tazs-3rd5".
Returns: {row_count, columns: [{field_name, type, null_rate, non_null_count, distinct_count, min?, max?, avg?, top_values?, error?}], notes}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| dataset_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses behavioral traits: computation method (aggregate SoQL), which columns get min/max/avg, and that low-cardinality text gets top 10 values. It also describes return structure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with separate paragraphs for purpose, notes, args, and returns, but it is slightly verbose. However, every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has an output schema (not shown but noted), the description adequately details what is returned (row_count, columns array with field details). It covers key behaviors without gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description provides all parameter meaning. It clearly defines both parameters with examples (domain hostname and Socrata 4x4 id), adding context beyond the schema type and title.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool profiles every column with null rate, distinct count, min/max, and top values, clearly distinguishing it from sibling tools like query or export_csv by noting it uses aggregate SoQL and never downloads the dataset.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for data profiling but does not explicitly state when to use versus alternatives or provide exclusions. It lacks guidance on prerequisites or when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
queryA
Query a dataset with structured SoQL parameters OR one raw SoQL string.
Structured mode (recommended): pass any of select/where/group/order/
limit/offset plus optional geo filters. Raw mode: pass soql only
(e.g. "SELECT offense, count(*) GROUP BY offense LIMIT 50").
Args: domain: Portal hostname, e.g. "data.seattle.gov". dataset_id: Socrata 4x4 id, e.g. "tazs-3rd5". select: Columns/expressions, e.g. ["offense", "count(*) as n"]. where: SoQL filter, e.g. "offense_date > '2026-06-01T00:00:00'". group: GROUP BY columns (pair with aggregate select expressions). order: e.g. "offense_date DESC". Defaults to ":id" for stable paging. limit: Max rows returned (default 100, hard cap applies). offset: Row offset for pagination. soql: Raw SoQL query — mutually exclusive with all structured params. within_circle: {field, lat, lon, radius_m} geo filter on a point column. within_box: {field, nw_lat, nw_lon, se_lat, se_lon} geo filter.
Returns:
{rows, row_count, truncated, query: {params, effective_limit, clamped}}.
truncated: true means more rows matched than were returned — narrow
the query or use export_csv for bulk extraction.
| Name | Required | Description | Default |
|---|---|---|---|
| soql | No | ||
| group | No | ||
| limit | No | ||
| order | No | ||
| where | No | ||
| domain | Yes | ||
| offset | No | ||
| select | No | ||
| dataset_id | Yes | ||
| within_box | No | ||
| within_circle | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses truncation behavior, default ordering for stable paging, mutual exclusivity of soql and structured params, hard cap on limit, and return format. This is comprehensive for behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is fairly long but well-structured: intro, two modes, parameter list, return format. It is front-loaded and each sentence adds value. Slightly verbose but justified due to 11 parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 11 parameters, no annotations, and an output schema, the description covers input and output comprehensively. It explains pagination, truncation, default ordering, and mutual exclusion, leaving no obvious gaps for an agent to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description provides detailed explanations and examples for each parameter (e.g., domain with example domain, select with example expressions). This adds significant meaning beyond the schema's property titles, fully compensating for lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool queries a dataset using either structured SoQL parameters or a raw SoQL string. It specifies the verb 'Query' and the resource 'dataset', and distinguishes two modes. This is specific and helpful.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description recommends structured mode and explains when to use raw mode. It also suggests using export_csv for bulk extraction when truncated. However, it does not explicitly contrast with other sibling tools like sample or get_dataset, which would provide clearer usage boundaries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sampleA
Fetch the first n rows of a dataset (n capped at 100).
Args: domain: Portal hostname, e.g. "data.seattle.gov". dataset_id: Socrata 4x4 id, e.g. "tazs-3rd5". n: Number of rows (default 10, max 100).
Returns: {rows, row_count, note}. Rows are in :id order — a peek at real values, not a random sample.
| Name | Required | Description | Default |
|---|---|---|---|
| n | No | ||
| domain | Yes | ||
| dataset_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Given no annotations, description discloses key behaviors: max rows, ordering, return shape, and that result is not a random sample. Lacks mention of read-only nature, but fetch implies it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single-line summary, structured Args and Returns sections, no redundant information. Front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers main concerns for a simple fetch tool: parameter details, return shape, ordering, cap. Sibling tool differentiation absent but not critical for completeness here.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Each parameter is explained with examples and constraints (domain format, dataset id format, default/max for n), fully compensating for 0% schema description coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states verb 'fetch', resource 'first n rows of a dataset', and constraint 'capped at 100'. Distinguishes from random sample by noting rows are in id order.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage for a quick peek via return description, but does not explicitly contrast with sibling tools like 'query' or 'get_dataset'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_datasetsA
Search open-data catalogs for datasets (Socrata Discovery API).
Args: query: Full-text search, e.g. "crime reports" or "building permits". domain: Restrict to one portal, e.g. "data.seattle.gov". category: Portal category, e.g. "Public Safety". limit: Max results (default 20, cap 100). offset: Pagination offset into the result set.
Returns: {results: [{id, name, domain, description, updated_at, category, permalink}], count, total, offset}. Use each result's domain + id with the other tools.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| domain | No | ||
| offset | No | ||
| category | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavioral traits. It only implies a read operation, but does not explicitly state whether the tool is read-only, destructive, or requires authentication. It lacks details on side effects, rate limits, or authorization needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear first-line summary, followed by an Args list with parameter names and descriptions, and a Returns section. Every sentence is informative and no unnecessary words. It is concise yet comprehensive.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 5 parameters (1 required), no annotations, and an output schema, the description covers the tool's purpose, all parameters with examples, and the return format including hints for further use with sibling tools. It provides sufficient context for an agent to understand and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% coverage (only titles and types), but the description provides detailed semantics for all parameters: e.g., 'Full-text search, e.g. 'crime reports'', 'Restrict to one portal, e.g. 'data.seattle.gov''. This adds significant meaning beyond the schema, helping the agent understand how to use each parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Search open-data catalogs for datasets (Socrata Discovery API)', specifying the verb 'search', resource 'datasets', and the API used. It distinguishes the tool from siblings like export_csv, get_dataset, etc., which have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use the tool (to search datasets) and provides guidance: 'Use each result's domain + id with the other tools.' It does not explicitly exclude alternative uses, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
6 tool updates
v0.1.0- First observed
export_csv - First observed
get_dataset - First observed
profile_dataset - First observed
query - First observed
sample - First observed
search_datasets
TDQS
Scored across 6 tools
Each tool targets a distinct operation: search_datasets for discovery, get_dataset for metadata, profile_dataset for column profiling, query for flexible querying, sample for quick peeks, and export_csv for bulk download. No functional overlap.
Most tools follow verb_noun pattern (export_csv, get_dataset, profile_dataset, search_datasets). 'query' and 'sample' are single verbs but remain clear and consistent with the style; minor deviation from the full pattern.
6 tools is well-scoped for a read-only Socrata data exploration server. Each tool addresses a distinct need without bloat, and the count feels appropriate for the domain.
The tool surface covers the full lifecycle of data exploration: search for datasets, inspect metadata, profile columns, query data, sample rows, and export. No obvious gaps for the intended purpose of querying and exporting open data.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Agent-native MCP server over 49M+ US public and government records, privacy-first, always current.
Query, join, profile, clean and convert CSV/JSON/Parquet with server-side DuckDB over MCP.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server that provides tools for intelligently querying, analyzing, and retrieving datasets from Toronto's CKAN-powered open data portal. It enables AI assistants to perform natural language searches, inspect data structures, and track dataset update frequencies across the city's open data catalog.12-
- AlicenseAqualityDmaintenanceAn MCP server for discovering, downloading, querying, and analyzing datasets from Ontario's open data portals, allowing natural language questions and high-performance analytics via DuckDB.231MIT
- AlicenseAqualityDmaintenanceAn MCP server that gives AI agents clean, token-efficient access to US civic & property data — geocoding, census tracts, Opportunity Zones, ACS demographics, and FEMA flood zones — sourced entirely from free federal open data.5271MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to query U.S. government datasets via the Data.gov CKAN API, wrapped as an MCP server.15MIT