Flin Google Ads
БесплатноНе проверенRead-only MCP server for Google Ads entities and reporting.
Описание
Read-only MCP server for Google Ads entities and reporting.
README
Read-only MCP server for Google Ads, built for simple public use via uvx.
Why this server
- Read-only by design
- No create/update/delete campaign operations
- Refresh token can be generated and stored through MCP auth tools
- Easy local testing with MCP Inspector
Exposed MCP tools
health_checklist_accessible_customersget_customer_clientsfind_customer_clientsget_campaignsget_ad_groupsget_adsget_insightsget_conversion_insightsget_keywordsget_search_termsget_change_eventsauth_statusget_auth_urlsave_refresh_token_from_codeclear_auth_token
get_ads includes RSA content fields (headlines/descriptions/paths/final URLs) when available.
get_insights supports:
campaignad_groupadcustomer(account-level metrics)account(alias ofcustomer)
get_search_terms is backed by search_term_view, so it returns actual user search terms rather than configured keywords. Pass segment_by_date=true when you need daily search-term rows with a date field instead of one aggregate row per search term for the requested range.
Search-term conversion filters:
conversion_action_idconversion_action_name
Search-term optional segmentation:
segment_by_date
get_change_events is backed by the Google Ads change_event resource. It returns recent account changes with user, client type, changed resource, operation, changed field paths, and old/new values where the API returns them. Google Ads requires a finite change_event.change_date_time window within the past 30 days and a LIMIT; pass start_date and end_date as YYYY-MM-DD.
Example:
{
"tool": "get_change_events",
"args": {
"customer_id": "2054139041",
"login_customer_id": "6050181535",
"start_date": "2026-06-01",
"end_date": "2026-06-15",
"resource_type": "CAMPAIGN",
"limit": 50
}
}
Conversion insights
Use get_conversion_insights when you need conversion-only reporting by day or conversion action, for example "which campaigns had lead conversions each day last week."
It supports the same levels as get_insights:
campaignad_groupadcustomer(account-level metrics)account(alias ofcustomer)
Optional segmentation:
segment_by_datesegment_by_conversion_action
Optional conversion-action filters:
conversion_action_idconversion_action_name
Rules:
- pass at most one of the two parameters
conversion_action_idmust be a Google Ads resource name such ascustomers/1234567890/conversionActions/555conversion_action_namematchessegments.conversion_action_nameget_conversion_insightsreturns onlymetrics.conversionsandmetrics.conversions_value
Use get_insights for general performance metrics such as impressions, clicks, CTR, CPC, and cost. Use get_conversion_insights for conversion-action or daily conversion breakdowns.
Requirements
- Python 3.10+
- Node.js v25.8.1+ (only for MCP Inspector testing)
- Google Ads API credentials:
GOOGLE_ADS_DEVELOPER_TOKENGOOGLE_ADS_CLIENT_IDGOOGLE_ADS_CLIENT_SECRET
Optional:
GOOGLE_ADS_REFRESH_TOKEN(backwards-compatible override; normally generated with MCP auth tools)GOOGLE_ADS_AUTH_FILE(defaults to~/.config/flin-google-ads-mcp/auth.json)GOOGLE_ADS_OAUTH_REDIRECT_URI(defaults tohttp://127.0.0.1:8080/)GOOGLE_ADS_LOGIN_CUSTOMER_IDGOOGLE_ADS_CUSTOMER_ID(default customer if nocustomer_idargument is passed)GOOGLE_ADS_USE_PROTO_PLUS(trueby default)
For MCC flows, you can also pass login_customer_id directly per tool call.
Auth flow
The MCP client config no longer needs GOOGLE_ADS_REFRESH_TOKEN.
- Configure
GOOGLE_ADS_DEVELOPER_TOKEN,GOOGLE_ADS_CLIENT_ID, andGOOGLE_ADS_CLIENT_SECRET. - Run
auth_status. - If it reports
missing_refresh_token, runget_auth_url. - Open the returned Google URL, sign in, and copy either the
codevalue or the full redirected URL. - Run
save_refresh_token_from_codewith that value. - Run
health_check.
The stored refresh token is written to ~/.config/flin-google-ads-mcp/auth.json by default and is never returned by MCP tools.
Quick flow: "Avesco spend yesterday"
- Find the subaccount by name under the manager:
{
"tool": "find_customer_clients",
"args": {
"manager_customer_id": "6050181535",
"login_customer_id": "6050181535",
"name_query": "Avesco",
"direct_only": false,
"include_hidden": false,
"include_self": false,
"status": "ALL",
"limit": 50
}
}
- Use the returned
client_customer_idwith account-level insights:
{
"tool": "get_insights",
"args": {
"customer_id": "2054139041",
"login_customer_id": "6050181535",
"level": "account",
"date_range": "YESTERDAY",
"limit": 10
}
}
Date ranges
get_insights, get_conversion_insights, get_keywords, and get_search_terms support:
TODAYYESTERDAYTHIS_WEEK_MON_TODAYTHIS_WEEK_SUN_TODAYLAST_WEEK_MON_SUNLAST_WEEK_SUN_SATLAST_7_DAYSLAST_14_DAYSLAST_30_DAYSLAST_60_DAYSLAST_90_DAYSTHIS_MONTHLAST_MONTHCUSTOM(requiresstart_dateandend_dateinYYYY-MM-DD)
Quickstart (from source)
uv sync --extra dev
cp .env.example .env
# Fill .env values
uv run flin-google-ads-mcp
Quickstart (as published package)
uvx flin-google-ads-mcp@latest
Claude integration (published via uvx)
{
"mcpServers": {
"flin-google-ads-mcp": {
"command": "uvx",
"args": ["flin-google-ads-mcp@latest"],
"env": {
"GOOGLE_ADS_DEVELOPER_TOKEN": "xxx",
"GOOGLE_ADS_CLIENT_ID": "xxx",
"GOOGLE_ADS_CLIENT_SECRET": "xxx",
"GOOGLE_ADS_CUSTOMER_ID": "1234567890",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "1234567890"
}
}
}
}
Claude integration (local development)
{
"mcpServers": {
"flin-google-ads-mcp-local": {
"command": "uv",
"args": [
"run",
"--directory",
"/Users/nicolasg/Antigravity/flin-google-ads-mcp",
"flin-google-ads-mcp"
],
"env": {
"GOOGLE_ADS_DEVELOPER_TOKEN": "xxx",
"GOOGLE_ADS_CLIENT_ID": "xxx",
"GOOGLE_ADS_CLIENT_SECRET": "xxx",
"GOOGLE_ADS_CUSTOMER_ID": "1234567890",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "0987654321"
}
}
}
}
How to test
Detailed guide: docs/testing.md
- Release checklist: docs/release.md
Operational usage guide:
Fast path:
uv sync --extra dev
python3 -m pytest
python3 -m compileall src
Then run live smoke tests with MCP Inspector (see the testing guide).
Release on GitHub + PyPI
This repository publishes automatically with GitHub Actions:
- CI:
.github/workflows/ci.yml - Release:
.github/workflows/release.yml(triggered by git tagsv*)
1) Configure PyPI Trusted Publisher (one-time)
In PyPI project settings for flin-google-ads-mcp, add a Trusted Publisher with:
- Owner:
flin-agency - Repository:
flin-google-ads-mcp - Workflow:
release.yml - Environment:
pypi
2) Cut a release
# bump version in pyproject.toml first, then:
git add -A
git commit -m "release: v0.1.0"
git tag v0.1.0
git push origin main --tags
The Release workflow builds, tests, and publishes to PyPI using OIDC (no PyPI API token in GitHub secrets).
CI
GitHub Actions validates:
- unit tests
- import/compile checks
- package build
Установить Flin Google Ads в Claude Desktop, Claude Code, Cursor
unyly install flin-google-adsСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add flin-google-ads -- uvx flin-google-ads-mcpПошаговые гайды: как установить Flin Google Ads
FAQ
Flin Google Ads MCP бесплатный?
Да, Flin Google Ads MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Flin Google Ads?
Нет, Flin Google Ads работает без API-ключей и переменных окружения.
Flin Google Ads — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Flin Google Ads в Claude Desktop, Claude Code или Cursor?
Открой Flin Google Ads на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
автор: lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare Flin Google Ads with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
