modify_funnels
Read or replace funnels with explicit shape validation. How to use: - Call without `funnels` to inspect current funnel list. - Update is replace-style: provide the full intended funnels list. Expected item shape: - `url` (string) - `description` (string) - `primary_use_case` (string) - `qualification` (optional string)
Remote signal-found/reddit-outreach
Other tools also called modify_funnels?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"funnels": {
"anyOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
{
"type": "null"
}
],
"title": "Funnels",
"default": null
},
"client_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Client Id",
"default": null
},
"product_slug": {
"type": "string",
"title": "Product Slug"
}
}
}