Skip to main content

Marketing Data Hub

Your marketing data, on your machine, free. An open-source Windsor.ai alternative: pulls Google Analytics 4, Search Console (plus Google Ads, Meta Ads, YouTube) into one local database — queryable via a REST API, scheduled CSV exports, and by AI assistants like Claude (MCP). No hosted service, no subscription, your tokens never leave your computer.

Quick start

Windows: download the installer from https://growthbybhargava.com/tools/marketing-data-hub and run it — the setup page opens in your browser.

Anywhere with Python 3.11+:

pip install marketing-data-hub
hub setup

(Developers: git clone https://github.com/Bhargava-R-dev/marketing-data-hub and pip install -e ".[dev]" instead.)

The setup page walks you through: sign in to Google → tick the GA4 properties / Search Console sites you want → watch the first sync load, account by account → connect Claude (one click) → done, with the daily 6am sync scheduled for you and a Marketing Data Hub icon on your Desktop / Start Menu. That icon is the everyday entry point: add or remove accounts, sync now, open the dashboard — no command window (hub shortcut recreates it).

Your hub lives in %LOCALAPPDATA%\MarketingDataHub (Windows) or ~/.marketing-data-hub (Mac/Linux); nothing to configure. A config.yaml in the current folder takes precedence, so existing checkouts keep working. Prefer your own Google Cloud project over the bundled sign-in? Drop your google_client.json in that folder's secrets/ — the setup page shows which one is in use (SETUP.md step 2).

Never used a terminal? → GUIDE.md is a complete, plain-English walkthrough from installing Python through asking your first question — written for non-technical teammates, and made to be shared.

Then ask Claude things like "How did organic traffic do in June vs May?" or "Top non-branded search queries this month?" — or automate a daily 6am sync (SETUP.md, step 8).

Reports (analysis shapes)

Each source syncs several named reports — different dimensional shapes of the same data, stored side by side and never mixed (mixing granularities would double-count):

Source Report Answers
ga4 core daily campaign totals (sessions, users, conversions, revenue)
ga4 channels traffic mix: organic vs paid vs direct, engagement, pageviews
ga4 landing_pages entry-page performance per channel
ga4 pages page behaviour: views, engagement time, events per path
ga4 audience device × country segmentation
ga4 visitors new vs returning (cohort-lite)
gsc core exact daily search totals per site
gsc queries per-query performance (branded split = string-match)
gsc pages per-URL search performance
gsc devices / countries mobile/desktop and geo splits
ga4 events per-event counts by name (brand-specific: form_submit, call_click...)

GA4 breakdown reports exclude GA4's unattributable (other) bucket, so they sum to slightly under the topline (on very large properties, well under for high-cardinality dims like landing pages) — use core for exact totals, breakdowns for composition/ranking. Same idea as GSC query anonymisation.

Pass report=<name> to the API/MCP query_metrics; default is core. MCP query_metrics also supports compare= (prev_period / prev_day / prev_week / prev_month / prev_year — returns value, previous, and %-change per metric for any date range) and filters= (exact match on any dimension incl. report extras, e.g. {"event": "form_submit"} or {"device": "MOBILE"}). Rates are computed, not stored: engagement rate = engaged_sessions/sessions, ctr = clicks/impressions, avg engagement time = engagement_seconds/pageviews. GSC breakdown reports undercount totals slightly (Google anonymises rare queries) — use core for toplines. True user-level cohorts need the GA4 BigQuery export; visitors + the live tools cover cohort-lite analysis.

For anything the synced reports don't cover, the MCP tools query_ga4_live and query_gsc_live pass arbitrary dimension/metric combinations straight to the APIs on demand.

Setup

New here / installing on another machine? Follow SETUP.md — a step-by-step guide including the Google Cloud OAuth setup. Quick version:

  1. python -m pip install -e ".[dev]"
  2. Copy config.yaml.exampleconfig.yaml; fill in your GA4 property_id and Search Console site_url. Have multiple GA4 properties or Search Console sites under the same Google login? Use property_ids: [...] / site_urls: [...] instead — all of them sync, and every row is tagged with its own account_id so they stay distinguishable downstream.
  3. Copy .env.example.env; set a random HUB_API_KEY.
  4. Google Cloud Console → create a project → enable Google Analytics Data API, Google Analytics Admin API, Search Console API, YouTube Analytics API → create an OAuth client (Desktop app) → download JSON to secrets/google_client.json. (See SETUP.md for the OAuth consent-screen steps and the 7-day token-expiry gotcha.)
  5. hub doctor — first run opens a browser to authorize; then all checks go green.
  6. hub accounts --add — pick which GA4 properties / GSC sites to sync from everything your Google login can see.

Daily use

Command What it does
hub sync all sync every configured source (rolling 30-day window)
hub backfill ga4 --from 2024-01-01 load history in 90-day chunks
hub status row counts + last sync per source
hub serve query API on 127.0.0.1:8000 + cron scheduler
hub export all write configured CSVs to exports/
hub mcp MCP server (stdio) for Claude

Query API

GET /connectors/all/data?fields=date,source,clicks,spend&date_preset=last_30d
X-API-Key: <HUB_API_KEY>

format=csv for CSV, report=<name> for a breakdown report. /connectors lists sources; /connectors/{source}/reports lists report shapes; /connectors/{source}/fields?report=<name> lists fields.

Claude MCP

claude mcp add marketing-hub -- python -m hub.cli mcp --config <absolute-path>/config.yaml Then ask Claude: "How did my campaigns do last week?"

Note: use an absolute path for --config; the MCP process may be launched from a different working directory.

trigger_sync starts the sync in the background and returns immediately (output goes to logs/mcp_sync.log); poll sync_status to see when it finishes. While a sync holds the write lock, query tools return a readable "database is busy" error instead of hanging.

Activating the ad connectors

  • Google Ads: apply for a developer token (API Center), then uncomment google_ads in config.yaml and fill options.
  • Meta Ads: create a Meta app, generate a long-lived token with ads_read, uncomment meta_ads and fill options.

Known limitations

  • DuckDB allows one writer: run hub mcp OR hub serve, not both at once (trigger_sync from MCP spawns the CLI, which needs the write lock free). While any sync runs, MCP query tools report "database is busy" until it finishes (~3 min for sync all).
  • Extras fields (e.g. position, ctr, views) are returned as strings by the query API — cast numerically as needed.

Download files

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

Source Distribution

marketing_data_hub-0.5.0.tar.gz (484.7 kB view details)

Uploaded Source

Built Distribution

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

marketing_data_hub-0.5.0-py3-none-any.whl (180.2 kB view details)

Uploaded Python 3

File details

Details for the file marketing_data_hub-0.5.0.tar.gz.

File metadata

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

File hashes

Hashes for marketing_data_hub-0.5.0.tar.gz
Algorithm Hash digest
SHA256 48b14b1345eaffba12b687f076707c135b8a5bd36f6c4dc11ecd0161ee7daf4a
MD5 ebe6135bc5c96cc27bdffe1c78602b06
BLAKE2b-256 4baaa7c0c8964b5e5f579249d1a6ab632330e73df672ca3f6daa6a2c867de6eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for marketing_data_hub-0.5.0.tar.gz:

Publisher: release.yml on Bhargava-R-dev/marketing-data-hub

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

File details

Details for the file marketing_data_hub-0.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for marketing_data_hub-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f47f488457b76b7a34de75936bdf3663942ca2edfe50391bb0f9c68249610c8a
MD5 a7c0947c71bfae15880d3fb3b7eddfeb
BLAKE2b-256 8633ded54f5a1019e935b392573696435eb881782d0e9f16736439175d86db28

See more details on using hashes here.

Provenance

The following attestation bundles were made for marketing_data_hub-0.5.0-py3-none-any.whl:

Publisher: release.yml on Bhargava-R-dev/marketing-data-hub

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.5.0 This release

2 files

0.4.0

2 files

0.3.1

2 files

0.2.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