Make
adResearch__addCompetitors
[write] Add competitors to a project by name (optionally with website URL) and kick off ad scraping for them.
Remote mesmerpercy/admakeai
Remote (network-hosted)
Other tools also called adResearch__addCompetitors?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string"
},
"scrapeAds": {
"type": "boolean",
"default": true
},
"competitors": {
"type": "array",
"items": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"type": {
"enum": [
"DIRECT",
"INDIRECT",
"ASPIRATIONAL"
],
"type": "string",
"default": "DIRECT"
},
"websiteUrl": {
"type": "string",
"format": "uri"
}
}
},
"minItems": 1
}
}
}