Reddit

run_full_agentic_onboarding

Execute the full staged onboarding flow end-to-end in one call. Intended for zero-context agents that want a safe default path. This tool orchestrates: - prompt-pack version + ack - clarifications (questions/mode/answers) - conversation (mode/transcript/extract) - artifact validation + writes - targeting submit (+ optional approve) - readiness snapshot Requirements: - `clarifying_questions` must have exactly 3 items - pass valid schema payloads for artifacts/targeting On partial failure, returns `failed_stage`, `retry_hint`, and completed stages.

Remote signal-found/reddit-outreach

Other tools also called run_full_agentic_onboarding? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "funnels": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      },
      "title": "Funnels"
    },
    "agent_id": {
      "type": "string",
      "title": "Agent Id",
      "default": "sf-mcp-orchestrator"
    },
    "keywords": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "title": "Keywords"
    },
    "client_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Client Id",
      "default": null
    },
    "session_id": {
      "type": "string",
      "title": "Session Id"
    },
    "product_slug": {
      "type": "string",
      "title": "Product Slug"
    },
    "market_position": {
      "type": "object",
      "title": "Market Position",
      "additionalProperties": true
    },
    "conversion_notes": {
      "type": "object",
      "title": "Conversion Notes",
      "additionalProperties": true
    },
    "subreddit_groups": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      },
      "title": "Subreddit Groups"
    },
    "approve_targeting": {
      "type": "boolean",
      "title": "Approve Targeting",
      "default": true
    },
    "conversation_mode": {
      "type": "string",
      "title": "Conversation Mode",
      "default": "agent_answers_conversation"
    },
    "clarification_mode": {
      "type": "string",
      "title": "Clarification Mode",
      "default": "agent_answers_questions"
    },
    "clarifying_answers": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": {
          "type": "string"
        }
      },
      "title": "Clarifying Answers"
    },
    "clarifying_questions": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": {
          "type": "string"
        }
      },
      "title": "Clarifying Questions"
    },
    "keyword_search_params": {
      "anyOf": [
        {
          "type": "object",
          "additionalProperties": true
        },
        {
          "type": "null"
        }
      ],
      "title": "Keyword Search Params",
      "default": null
    },
    "conversation_transcript": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      },
      "title": "Conversation Transcript"
    }
  }
}
          

Provider

Reddit →