@channel47/google-ads-mcp 1.0.5 → 1.0.6

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/package.json +1 -1
  2. package/server/index.js +10 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@channel47/google-ads-mcp",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Google Ads MCP Server - Query and mutate Google Ads data using GAQL",
5
5
  "main": "server/index.js",
6
6
  "bin": {
package/server/index.js CHANGED
@@ -103,7 +103,16 @@ Supports two operation formats:
103
103
  2. Opteo library format:
104
104
  { "entity": "campaign", "operation": "update", "resource": { "resource_name": "...", "status": "PAUSED" } }
105
105
 
106
- Entity types are auto-inferred from resource_name patterns for updates/removes.`,
106
+ Entity types are auto-inferred from resource_name patterns for updates/removes.
107
+
108
+ Asset Uploads:
109
+ For IMAGE/VIDEO assets, use 'image_file_path' or 'video_file_path' with absolute file paths:
110
+ { "entity": "asset", "operation": "create", "resource": { "name": "My Image", "type": "IMAGE", "image_file_path": "/path/to/image.jpg" } }
111
+
112
+ - Tool automatically reads, validates, and base64-encodes the file
113
+ - Supported formats: JPEG (.jpg, .jpeg), PNG (.png with valid headers)
114
+ - Maximum file size: 5MB
115
+ - Paths must be absolute (e.g., /Users/name/image.jpg or C:\\Users\\name\\image.jpg)`,
107
116
  inputSchema: {
108
117
  type: 'object',
109
118
  properties: {