gads_get_campaign
Pack: google_ads · Endpoint: https://gateway.pipeworx.io/google_ads/mcp
Get detailed settings for a specific campaign. Returns name, status, budget, bidding strategy, and configuration. Use to review or audit a campaign’s current setup.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
customer_id | string | yes | Google Ads customer ID |
campaign_id | string | yes | The campaign resource ID |
Example call
Arguments
{
"customer_id": "1234567890",
"campaign_id": "9876543210"
}
curl
curl -X POST https://gateway.pipeworx.io/google_ads/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gads_get_campaign","arguments":{"customer_id":"1234567890","campaign_id":"9876543210"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gads_get_campaign', {
"customer_id": "1234567890",
"campaign_id": "9876543210"
});
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Campaign details from GAQL search |
Full JSON Schema
{
"type": "object",
"properties": {
"results": {
"type": "array",
"description": "Campaign details from GAQL search",
"items": {
"type": "object",
"properties": {
"campaign": {
"type": "object",
"description": "Campaign resource data",
"properties": {
"id": {
"type": "string",
"description": "Campaign ID"
},
"name": {
"type": "string",
"description": "Campaign name"
},
"status": {
"type": "string",
"description": "Campaign status"
},
"advertising_channel_type": {
"type": "string",
"description": "Advertising channel type"
},
"bidding_strategy_type": {
"type": "string",
"description": "Bidding strategy type"
},
"start_date": {
"type": "string",
"description": "Campaign start date"
},
"end_date": {
"type": "string",
"description": "Campaign end date"
},
"serving_status": {
"type": "string",
"description": "Campaign serving status"
}
}
},
"campaign_budget": {
"type": "object",
"description": "Campaign budget information",
"properties": {
"amount_micros": {
"type": "number",
"description": "Budget amount in micros"
},
"delivery_method": {
"type": "string",
"description": "Budget delivery method"
}
}
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"google_ads": {
"url": "https://gateway.pipeworx.io/google_ads/mcp"
}
}
}
See Getting Started for client-specific install steps.