sodabar
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., "@sodabarHow many rodent complaints are there in each NYC borough?"
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.
sodabar ๐ฅค
An MCP server that puts open data on tap โ four tools that let any LLM client search, inspect, and query 30,000+ civic datasets, with guardrails designed for a model on the other end.
Live demo: usmar-sodabar.static.hf.space โ the same console, answered in your browser straight from the live NYC Open Data API.
The problem โ and why it matters
Socrata powers the open-data portals of NYC, Chicago, Seattle, and hundreds of other governments โ tens of thousands of live, queryable datasets. But an LLM can't use any of it directly: it doesn't know which datasets exist, what their columns are called, or how to write a SoQL query against them. And if you naively hand a model a raw HTTP tool, it will page 500,000 rows into its own context window or paste an HTML error page into its reasoning.
sodabar is a Model Context Protocol server that closes that gap. It exposes the catalog โ schema โ query workflow as four typed tools, with the sharp edges filed off server-side: row caps a tool call cannot exceed, dataset-id validation that fails before a request leaves the machine, and upstream errors rewritten into messages a model can act on ("check the dataset id and domain") rather than tracebacks it will hallucinate around.
Point Claude Desktop, Claude Code, or any MCP client at it:
{
"mcpServers": {
"sodabar": {
"command": "/path/to/sodabar/.venv/bin/python",
"args": ["-m", "sodabar.server"]
}
}
}Related MCP server: data-detective
What an agent session looks like
docs/agent-demo.md is a committed transcript of Gemini driving the server through the real MCP stdio transport. Given only the four tools and the question "Which NYC borough has logged the most 'Rodent' 311 complaints so far in 2026?", the model planned three calls on its own:
search_datasets("311 Complaints")โ founderm2-nwe9get_schema("erm2-nwe9")โ learnedcomplaint_type,created_date,boroughquery_dataset(select="borough, count(*)", where="complaint_type = 'Rodent' AND created_date BETWEEN โฆ", group="borough", order="โฆ DESC", limit=3)
and answered: Brooklyn 5,521 ยท Manhattan 3,528 ยท Queens 3,079. No SoQL was written by a human at any point.
docs/demo-transcript.md is the scripted equivalent โ every tool exercised over a real stdio subprocess session, regenerated with make demo.
The four tools
Tool | What it answers |
| "What datasets exist about X?" โ full-text catalog search |
| "What columns can I query, and what are their types?" |
| SQL-shaped aggregation and filtering via SoQL |
| "What values does this column take?" โ vocabulary before |
domain defaults to data.cityofnewyork.us but accepts any Socrata portal (data.seattle.gov, data.cityofchicago.org, โฆ), so one server covers hundreds of cities.
The playground
make serve starts a FastAPI app whose REST routes mirror the MCP tools one-to-one โ the console shows the exact tools/call envelope and the exact result an LLM client would see:

Guardrails are part of the demo. A malformed tool call gets a readable, actionable error โ not a traceback:

The live static deployment serves the identical HTML with a 4 KB fetch shim that answers the /api/* routes in-browser, straight from the Socrata APIs (which send Access-Control-Allow-Origin: *) โ a zero-backend demo of a backend project.
Key design decisions
Guardrails live server-side, not in the prompt.
$limitis clamped to 1,000 rows no matter what the model asks for; dataset ids must match Socrata'sxxxx-xxxxform (which also blocks path traversal through the resource URL); domains must be bare hostnames. A prompt can be ignored โ a clamp cannot.Errors are written for the model that reads them. A 404 becomes "not found โ check the dataset id and domain"; a SoQL 400 surfaces Socrata's own message with "check your SoQL syntax". The retry policy distinguishes transient failures (429/5xx: three attempts with backoff) from semantic ones (400/404: fail immediately).
One client, three consumers. The MCP server, the FastAPI playground, and the demo scripts share one
SocrataClient, so timeout, retry, and error behavior can't drift between what's tested and what's deployed.Tool descriptions teach the workflow. The server's
instructionsand each tool's docstring steer a model towardsearch โ schema โ queryand toward aggregating withgroupinstead of paging raw rows โ the difference between a 6-row answer and a 6,000-row context spill.Tests mock the transport, not the code. All 54 tests run against
httpx.MockTransportโ CI needs no network and finishes in under a second, while retry logic, error mapping, and the FastAPI lifespan wiring are exercised for real.
Limitations
SoQL clauses are passed through to Socrata after shape checks, not parsed โ a syntactically valid but expensive query (e.g.
groupon a high-cardinality column) is bounded by the row cap and Socrata's own timeouts, nothing stricter.Catalog search relies on Socrata's relevance ranking, which favors title matches; an agent may need two searches with different phrasings.
Anonymous (keyless) Socrata access is throttled upstream; sustained heavy use would need an app token, which the client doesn't currently send.
The committed transcripts hit the live API, so re-running
make demowill show current counts, not the committed ones.
Reproduce it
git clone https://github.com/UsmarHaider/sodabar && cd sodabar
make venv # python3 -m venv + editable install
make test # 54 tests, no network needed
make demo # scripted MCP stdio session โ docs/demo-transcript.md (live API)
make serve # playground at http://127.0.0.1:8012
cp .env.example .env # then fill in GEMINI_API_KEY to run:
make agent-demo # Gemini plans the tool calls โ docs/agent-demo.mdProject layout
sodabar/
โโโ sodabar/
โ โโโ soql.py # query validation: 4x4 ids, domain shape, row caps
โ โโโ client.py # shared Socrata HTTP client: retries, error translation
โ โโโ server.py # the MCP server (4 tools, stdio transport)
โ โโโ service.py # FastAPI playground mirroring the tools over REST
โ โโโ web/index.html # self-contained console UI (no build step, no CDN)
โโโ scripts/
โ โโโ demo_session.py # scripted MCP client session โ docs/demo-transcript.md
โ โโโ agent_demo.py # Gemini function-calling over the MCP session
โ โโโ screenshot.sh # headless-Chrome captures of the console
โ โโโ deploy_space.py # builds + publishes the static HF Space demo
โโโ tests/ # 54 tests, all offline (httpx.MockTransport)
โโโ docs/ # committed transcripts + UI screenshotsMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- 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.Last updated231MIT
- Alicense-qualityDmaintenanceAn MCP server that gives AI assistants the ability to connect to, query, profile, and monitor data sources โ turning any LLM into an interactive data engineering copilot.Last updatedMIT
- Alicense-qualityFmaintenanceAn MCP server that provides safe, read-only access to Boston's open data portal, enabling natural language exploration of civic datasets.Last updated2GPL 3.0
- Alicense-qualityCmaintenanceA governed MCP server enabling LLM agents to query BigQuery, inspect GCS, trigger Airflow DAGs, and run data-quality checks with built-in security guardrails like allow-lists, cost ceilings, and audit trails.Last updated1MIT
Related MCP Connectors
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
This MCP server provides seamless access to Malaysia's government open data, including datasets, wโฆ
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/UsmarHaider/sodabar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server