Skip to main content

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

Development

  1. Clone the repository
git clone https://github.com/wanadzhar913/electiondata-my-mcp.git
cd electiondata-my-mcp
  1. Install the development dependencies
uv sync --group dev
  1. Run & validate the server with the MCP Inspector:
uv run mcp dev src/electiondata_my_mcp/server.py
  1. Run the tests
uv run pytest -q
  1. 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 httpfs speaks HTTP range requests, so a SELECT seat, majority touches 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. LAZY marks the voter_roll_* tables, mirroring LAZY_DATASETS upstream; 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:

  • SELECT or WITH only, 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 carry LIMIT 10000 or 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

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. 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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

electiondata_my_mcp-0.1.1.tar.gz (107.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

electiondata_my_mcp-0.1.1-py3-none-any.whl (25.7 kB view details)

Uploaded Python 3

File details

Details for the file electiondata_my_mcp-0.1.1.tar.gz.

File metadata

  • Download URL: electiondata_my_mcp-0.1.1.tar.gz
  • Upload date:
  • Size: 107.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for electiondata_my_mcp-0.1.1.tar.gz
Algorithm Hash digest
SHA256 263af35df0f45a45cda9ed8d699c4f617bd0937f8c91a77f76eb6b0ba6828dd9
MD5 45a0196f7e6b9517b39fc617c8872b17
BLAKE2b-256 8862fd1f0b375da8612ced522f7df9165876d5184e29b425913c84605066a212

See more details on using hashes here.

Provenance

The following attestation bundles were made for electiondata_my_mcp-0.1.1.tar.gz:

Publisher: publish.yml on wanadzhar913/electiondata-my-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file electiondata_my_mcp-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for electiondata_my_mcp-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 35ed81760b5a137c4c4d9768ddafbee4869febc75f7e4589634d0e0982a3b1e5
MD5 dec7f342958a5dd265012b59a200fdf5
BLAKE2b-256 07ad8a0341c4f3bf7196015b821f6c2ad12508dafdb03c4c1db4a70e6ec811f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for electiondata_my_mcp-0.1.1-py3-none-any.whl:

Publisher: publish.yml on wanadzhar913/electiondata-my-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.1 This release

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page