get_googleads_campaigns
Retrieve Google Ads campaign data from your Metricool account for a specified date range and blog ID using the MCP server mcp-metricool.
Instructions
Get the list of Google Ads Campaigns from your Metricool account.
Args: init date: Init date of the period to get the data. The format is YYYYMMDD end date: End date of the period to get the data. The format is YYYYMMDD blog id: Blog id of the Metricool brand account.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blog_id | Yes | ||
end_date | Yes | ||
init_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"blog_id": {
"title": "Blog Id",
"type": "integer"
},
"end_date": {
"title": "End Date",
"type": "string"
},
"init_date": {
"title": "Init Date",
"type": "string"
}
},
"required": [
"init_date",
"end_date",
"blog_id"
],
"title": "get_googleads_campaignsArguments",
"type": "object"
}