send_reddit_message
Send Reddit DMs to scraped leads via the Signal Found Chrome extension. Three modes (exactly one must be set): - target_username: cold DM to a specific Reddit user - crm_reply_to: reply to an existing CRM conversation - batch_from_working_leads=True: send to all uncontacted working leads for this product Message content: provide a manual message, or set generate_message=True (default) to auto-generate using the product's market positioning and conversion notes via Phase 2. In batch mode, pre-computed suggested_response values are reused when available. Requires a Chrome extension connected and active on Reddit. Fails immediately if none is online.
Other tools also called send_reddit_message?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Limit",
"default": null
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Message",
"default": null
},
"batch_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Batch Id",
"default": null
},
"client_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Client Id",
"default": null
},
"crm_reply_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Crm Reply To",
"default": null
},
"product_slug": {
"type": "string",
"title": "Product Slug"
},
"target_username": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Target Username",
"default": null
},
"generate_message": {
"type": "boolean",
"title": "Generate Message",
"default": true
},
"batch_from_working_leads": {
"type": "boolean",
"title": "Batch From Working Leads",
"default": false
}
}
}