Electiondata My
FreeNot checkedAn MCP server that lets an LLM answer questions about Malaysian elections by writing DuckDB SQL against the public ElectionData.MY data lake
About
An MCP server that lets an LLM answer questions about Malaysian elections by writing DuckDB SQL against the public ElectionData.MY data lake
README
ElectionData.MY MCP Server (unofficial)
An MCP server that lets an LLM answer questions about Malaysian elections by writing DuckDB SQL against the public ElectionData.MY data lake — every Parliament and DUN contest ever held, down to saluran-level ballots and voter rolls.
No API key, no database to provision, no data to download. The lake is public Parquet over HTTP and DuckDB reads it in place. This is with special thanks to the ElectionData.MY team for making the data available!
NOTE: This is an unofficial project and is not affiliated with the ElectionData.MY team. Please support their work by visiting their website!
What's exposed
| Kind | Name | Purpose |
|---|---|---|
| Tool | list_datasets |
Every lake table, its URL, a description, and whether it streams. |
| Tool | describe_dataset |
Column names and types for one table. |
| Tool | validate_sql |
Check a query against the safety rules without running it. |
| Tool | sample_dataset |
A few rows from a table, for shape-checking. |
| Tool | execute_query |
Run validated read-only SQL; returns columns, rows, and elapsed time. |
| Resource | electiondata://query-guide |
Schema and SQL rules from the Query Builder. |
| Prompt | build_election_query |
Loads the guide and asks for a single query answering a question. |
The guide is the Query Builder's own copy-prompt.md,
fetched at runtime and cached for 24 hours under $XDG_CACHE_HOME/electiondata-my-mcp/. If GitHub is unreachable, a stale cache is used, then the bundled copy.
Installation
Requires uv (which provides uvx) and Python 3.11+.
The server is on PyPI. You do not need to clone this repository to use it.
# recommended: no install step; uvx fetches the pinned package
uvx electiondata-my-mcp==0.1.1
# or install from PyPI and run the console script
pip install electiondata-my-mcp==0.1.1
electiondata-my-mcp
Either command starts the server on stdio and waits for an MCP client — register it below rather than invoking it by hand.
Usage
Point your MCP client at uvx electiondata-my-mcp==0.1.1. Pin the version so a new release is not picked up automatically; drop the pin to track latest. uvx must be on the client's PATH — if the client cannot find it, use the absolute path from which uvx.
If you installed from PyPI instead of using uvx, set "command" to electiondata-my-mcp and omit args.
Claude Desktop
Add the server to claude_desktop_config.json:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"electiondata-my": {
"command": "uvx",
"args": [
"electiondata-my-mcp==0.1.1"
]
}
}
}
Restart Claude Desktop after saving.
Claude Code
From the terminal:
claude mcp add --transport stdio --scope user electiondata-my -- uvx electiondata-my-mcp==0.1.1
Or write the same JSON into a project .mcp.json, or into ~/.claude.json for a user-wide server:
{
"mcpServers": {
"electiondata-my": {
"command": "uvx",
"args": [
"electiondata-my-mcp==0.1.1"
]
}
}
}
Confirm with claude mcp list, or /mcp inside a session.
Cursor
Add the server in Settings → Tools & MCP, or write it to ~/.cursor/mcp.json (all projects) or .cursor/mcp.json (this workspace):
{
"mcpServers": {
"electiondata-my": {
"command": "uvx",
"args": [
"electiondata-my-mcp==0.1.1"
]
}
}
}
Sample Conversations
- Q&A with Claude Code ❯ How has the percentage of female MPs changed over time?
- Charts from Claude Code Session
Development
- Clone the repository
git clone https://github.com/wanadzhar913/electiondata-my-mcp.git
cd electiondata-my-mcp
- Install the development dependencies
uv sync --group dev
- Run & validate the server with the MCP Inspector:
uv run mcp dev src/electiondata_my_mcp/server.py
- Run the tests
uv run pytest -q
- Run the linter
uv run ruff check
Coverage is enforced at 80%. When the lake gains a dataset, update DATASETS in duckdb_lake.py alongside upstream datasets.ts — the validator's allowlist and the list_datasets tool both derive from it.
From a local checkout
After cloning and uv sync, launch the server over stdio from the repo:
uv run mcp run src/electiondata_my_mcp/server.py
Point a client at the checkout instead of PyPI — the same block works in Claude Desktop, Claude Code, and Cursor; only the config file path changes:
{
"mcpServers": {
"electiondata-my": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/electiondata-my-mcp",
"mcp",
"run",
"src/electiondata_my_mcp/server.py"
]
}
}
}
Design & Implementation
The DuckDB-WASM approach
The Query Builder on electiondata.my runs DuckDB-WASM inside the browser tab. There is no query backend: the page registers the lake's Parquet files under friendly table names (headline_ballots, voter_roll_ge15, …) and the browser's WASM DuckDB pulls bytes straight from https://lake.electiondata.my over HTTP range requests.
duckdb_lake.py reproduces that exact environment outside the browser, using native DuckDB plus httpfs instead of WASM plus fetch:
con.execute("INSTALL httpfs; LOAD httpfs;")
con.execute(f"CREATE OR REPLACE VIEW {name} AS SELECT * FROM read_parquet('{url}')")
Both paths share the same lake and the same table names. The difference is who runs DuckDB, and how the result is delivered:
%%{init: {
"theme": "base",
"themeVariables": {
"primaryTextColor": "#000000",
"secondaryTextColor": "#000000",
"tertiaryTextColor": "#000000",
"actorTextColor": "#000000",
"signalTextColor": "#000000",
"noteTextColor": "#000000"
}
}}%%
sequenceDiagram
autonumber
actor Client as User or LLM
participant Site as Query Builder (browser)
participant WASM as DuckDB-WASM
participant Server as MCP server
participant Duck as Native DuckDB + httpfs
participant Lake as lake.electiondata.my
rect rgb(235, 245, 255)
Note over Client,Lake: ElectionData.MY Query Builder
Client->>Site: SQL against friendly table names
Site->>WASM: execute
WASM->>Lake: HTTP range request (Parquet)
Lake-->>WASM: needed column chunks
WASM-->>Site: result set
Site-->>Client: rendered table
end
rect rgb(235, 255, 235)
Note over Client,Lake: This MCP server (same lake, same SQL)
Client->>Server: execute_query
Server->>Duck: validated read-only SQL
Duck->>Lake: HTTP range request via httpfs
Lake-->>Duck: needed column chunks
Duck-->>Server: rows
Server-->>Client: structured tool result
end
Why this matters:
- SQL is portable in both directions. The table names mirror datasets.ts in the ElectionData.MY frontend, so a query the model writes here can be pasted into the site's Query Builder unchanged, and the site's published prompt and examples work here unchanged. The model gets the same mental model the website documents.
- Nothing is copied or mirrored. Registering views rather than tables means the lake stays the single source of truth. A refreshed Parquet file is picked up on the next query.
- Only the bytes a query needs cross the network. Parquet is columnar and
httpfsspeaks HTTP range requests, so aSELECT seat, majoritytouches those column chunks and skips the rest of the file. This is the same property that makes a 22-million-row voter roll queryable from a browser tab, and it is why this server needs no local storage. - Voter rolls are never materialised.
LAZYmarks thevoter_roll_*tables, mirroringLAZY_DATASETSupstream; they always stream. Everything else can be materialised on demand with--cache, which trades freshness for repeat-query speed.
The one thing the browser cannot do is the reason this server exists: a WASM tab has no way to hand results to an MCP client. Here, the same queries run in-process and come back as structured tool results.
Safety model
Every query passes query_validator.py before it reaches DuckDB:
SELECTorWITHonly, one statement, no trailing second statement.- DDL, DML, and session keywords (
CREATE,ATTACH,INSTALL,PRAGMA,SET, …) are rejected. - File and network functions (
read_parquet,read_csv,glob, …) are rejected, so the allowlisted views are the only reachable data. - A query must reference at least one known lake table.
- Anything touching a
voter_roll_*table must carryLIMIT 10000or less — the same rule the website enforces.
execute_query returns at most 100 rows by default and 1,000 at the ceiling, flagging truncated rather than silently cutting.
Querying the lake directly
duckdb_lake.py is also a standalone CLI and library, useful for checking a query before wiring up a client:
# list the registered tables and their URLs
uv run src/electiondata_my_mcp/duckdb_lake.py --tables
# one-off query, pretty-printed
uv run src/electiondata_my_mcp/duckdb_lake.py \
"SELECT seat, majority FROM headline_stats ORDER BY majority DESC LIMIT 5"
# from a file or stdin, as CSV or JSON
uv run src/electiondata_my_mcp/duckdb_lake.py -f query.sql --format csv
# materialise the small tables so repeat queries hit disk, not the network
uv run src/electiondata_my_mcp/duckdb_lake.py --cache lake.duckdb "SELECT ..."
from electiondata_my_mcp.duckdb_lake import connect
df = connect().sql("SELECT * FROM headline_ballots LIMIT 10").df()
Relation to the ElectionData.MY API
The lake is for bulk and analytical work. For focused lookups — a candidate's history, a party's record in one state — the v1 REST API is the better fit; it needs an ELECTIONDATAMY_API_KEY and is covered by the query-electiondatamy-api skill in .cursor/skills/. This server deliberately covers only the lake, which needs no credentials.
Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
Much like the meco-front repository, this project is released into the public domain under CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. You are free to use, modify, and distribute the code without any restrictions.
Acknowledgments
- ElectionData.MY and the meco-front Query Builder
- DuckDB and DuckDB-WASM
- Model Context Protocol
Install Electiondata My in Claude Desktop, Claude Code & Cursor
unyly install electiondata-myInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add electiondata-my -- uvx electiondata-my-mcpStep-by-step: how to install Electiondata My
FAQ
Is Electiondata My MCP free?
Yes, Electiondata My MCP is free — one-click install via Unyly at no cost.
Does Electiondata My need an API key?
No, Electiondata My runs without API keys or environment variables.
Is Electiondata My hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Electiondata My in Claude Desktop, Claude Code or Cursor?
Open Electiondata My on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
by wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
by madhurprashPostgres
Query your database in natural language
by AnthropicPostgreSQL
Read-only database access with schema inspection.
by modelcontextprotocolRedis
Interact with Redis key-value stores.
by modelcontextprotocolSQLite
Database interaction and business intelligence capabilities.
by modelcontextprotocolmxcp
Open-source framework for building enterprise-grade MCP servers using just YAML, SQL, and Python, with built-in auth, monitoring, ETL and policy enforcement.
by raw-labstadas-github/a2asearch-mcp
MCP server to search 4,800+ MCP servers, AI agents, CLI tools and agent skills. Install: npx -y a2asearch-mcp. Ask Claude: "Find MCP servers for database access
by tadas-githubjulien040/anyquery
Query more than 40 apps with one binary using SQL. It can also connect to your PostgreSQL, MySQL, or SQLite compatible database. Local-first and private by desi
by julien040drakonkat/wizzy-mcp-tmdb
A MCP server for The Movie Database API that enables AI assistants to search and retrieve movie, TV show, and person information.
by drakonkatCompare Electiondata My with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All data MCPs
