Connect AI assistants and your own code to 350+ business data sources — ads, analytics, CRM, e-commerce, finance — through one MCP server and API.
- Claude — native connector in the Claude directory · setup guide
- ChatGPT — available as a ChatGPT app · setup guide
- Claude Code —
claude-windsor-ai-plugin:/plugin install windsor-ai@claude-plugin-directory - Cursor —
windsor-ai-cursor-plugin· setup guide - Any MCP client — guide, or add this to your client's MCP settings:
{ "mcpServers": { "windsor": { "url": "https://mcp.windsor.ai/" } } }pip install pywindsorai # Python — or install.packages("windsoraiR") on CRANfrom pywindsorai.client import Client
client = Client(api_key) # API key from onboard.windsor.ai
rows = client.connectors(date_preset="last_7d", fields=["date", "source", "campaign", "clicks", "spend"])Every connected source comes back as plain rows with the fields you asked for:
[
{"date": "2026-08-10", "source": "google_ads", "campaign": "brand_search", "clicks": 152, "spend": 84.31},
{"date": "2026-08-10", "source": "facebook", "campaign": "retargeting_eu", "clicks": 98, "spend": 45.02},
{"date": "2026-08-10", "source": "tiktok", "campaign": "summer_promo", "clicks": 61, "spend": 22.40},
]Or call the Connectors API over plain HTTP from any language. You'll need an API key, which you can get at onboard.windsor.ai.
- Windsor MCP — one hosted MCP server connecting Claude, ChatGPT, Cursor and any MCP client to 350+ sources, with write actions (pause campaigns, adjust budgets) on supported ad platforms.
- Connectors API — unified REST API over every source; OAuth or API key.
- dbt packages — dbt models that turn synced data into analytics-ready warehouse tables.
- Destinations — BigQuery, Snowflake, Redshift, Looker Studio, Power BI, Tableau, Sheets and more.
- Connector directory — browse all 350+ data sources
- Destinations directory — everywhere your data can land: warehouses, BI tools, sheets, AI assistants
- Developer docs — API reference, auth, rate limits, write actions
- llms.txt — machine-readable index of Windsor.ai's capabilities for AI agents (full version · live connector list)