@channel47/google-ads-mcp 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -15
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -3,7 +3,9 @@
3
3
  [![npm version](https://badge.fury.io/js/@channel47%2Fgoogle-ads-mcp.svg)](https://www.npmjs.com/package/@channel47/google-ads-mcp)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- MCP server for Google Ads API access via GAQL (Google Ads Query Language).
6
+ MCP server for Google Ads API access via GAQL (Google Ads Query Language). Built by a practitioner managing 25+ ad accounts daily — not a demo.
7
+
8
+ Part of [Channel 47](https://channel47.dev), the open-source ecosystem of profession plugins for Claude Code. [Get the newsletter](https://channel47.dev/subscribe) for weekly skill breakdowns from production use.
7
9
 
8
10
  ## Overview
9
11
 
@@ -13,7 +15,7 @@ This is a Model Context Protocol (MCP) server that provides tools for querying a
13
15
 
14
16
  ### For Claude Code Plugin Users
15
17
 
16
- This package is automatically installed when using the [google-ads-specialist Claude Code plugin](https://marketplace.claude.com/plugins/google-ads-specialist). No manual installation required!
18
+ This package is bundled with the [media-buyer Claude Code plugin](https://channel47.dev). No manual installation required.
17
19
 
18
20
  ### Standalone Use
19
21
 
@@ -239,14 +241,11 @@ The server provides:
239
241
 
240
242
  ## Usage with Claude Code
241
243
 
242
- This server is designed to work with the [google-ads-specialist plugin](https://marketplace.claude.com/plugins/google-ads-specialist), which provides:
244
+ This server is designed to work with the [media-buyer plugin](https://github.com/channel47/channel47), which provides:
243
245
 
244
- - **9 Skill Files**: Progressive disclosure of GAQL patterns and best practices
245
- - Atomic skills for focused tasks (campaign performance, search terms, wasted spend, etc.)
246
- - Playbooks for comprehensive workflows (account health audit)
247
- - Troubleshooting guides for common errors
248
- - **PreToolUse Hook**: Validates skill references before query/mutate operations
249
- - **Comprehensive Documentation**: Setup guides and OAuth configuration help
246
+ - **Skills** for campaign building, creative testing, and account audits
247
+ - **PreToolUse Hook** that validates mutations before execution
248
+ - **Reference docs** with GAQL patterns, ad copy formulas, and performance benchmarks
250
249
 
251
250
  The plugin ensures Claude consults domain knowledge before executing queries, preventing hallucinated GAQL.
252
251
 
@@ -261,8 +260,8 @@ The plugin ensures Claude consults domain knowledge before executing queries, pr
261
260
  ### Setup
262
261
 
263
262
  ```bash
264
- git clone https://github.com/channel47/google-ads-mcp-server.git
265
- cd google-ads-mcp-server
263
+ git clone https://github.com/channel47/mcps.git
264
+ cd mcps/google-ads
266
265
  npm install
267
266
  ```
268
267
 
@@ -303,9 +302,10 @@ Contributions welcome! Please:
303
302
 
304
303
  ## Links
305
304
 
305
+ - [Channel 47](https://channel47.dev) — open-source profession plugins for Claude Code
306
+ - [Build Notes Newsletter](https://channel47.dev/subscribe) — weekly skill breakdowns from production use
307
+ - [Media Buyer Plugin](https://github.com/channel47/channel47) — the full paid-search toolkit this MCP powers
306
308
  - [NPM Package](https://www.npmjs.com/package/@channel47/google-ads-mcp)
307
- - [GitHub Repository](https://github.com/channel47/google-ads-mcp-server)
308
- - [Claude Code Plugin](https://marketplace.claude.com/plugins/google-ads-specialist)
309
309
  - [Google Ads API Documentation](https://developers.google.com/google-ads/api/docs/start)
310
310
  - [GAQL Reference](https://developers.google.com/google-ads/api/docs/query/overview)
311
311
  - [Model Context Protocol](https://modelcontextprotocol.io)
@@ -317,5 +317,5 @@ MIT - See [LICENSE](LICENSE) file for details.
317
317
  ## Support
318
318
 
319
319
  For issues or questions:
320
- - Plugin-related: [Plugin Repository Issues](https://github.com/ctrlswing/channel47-marketplace/issues)
321
- - Server-related: [Server Repository Issues](https://github.com/channel47/google-ads-mcp-server/issues)
320
+ - Plugin-related: [Plugin Repository Issues](https://github.com/channel47/channel47/issues)
321
+ - Server-related: [Server Repository Issues](https://github.com/channel47/mcps/issues)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@channel47/google-ads-mcp",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Google Ads MCP Server - Query and mutate Google Ads data using GAQL",
5
5
  "main": "server/index.js",
6
6
  "bin": {
@@ -31,12 +31,13 @@
31
31
  "license": "MIT",
32
32
  "repository": {
33
33
  "type": "git",
34
- "url": "https://github.com/channel47/google-ads-mcp-server.git"
34
+ "url": "https://github.com/channel47/mcps.git",
35
+ "directory": "google-ads"
35
36
  },
36
37
  "bugs": {
37
- "url": "https://github.com/channel47/google-ads-mcp-server/issues"
38
+ "url": "https://github.com/channel47/mcps/issues"
38
39
  },
39
- "homepage": "https://github.com/channel47/google-ads-mcp-server#readme",
40
+ "homepage": "https://github.com/channel47/mcps/tree/main/google-ads#readme",
40
41
  "dependencies": {
41
42
  "@modelcontextprotocol/sdk": "^1.0.0",
42
43
  "google-ads-api": "^21.0.1",