create_new_account
Create a brand-new Signal Found client account for onboarding. Requires: - `business_name` - `email` Returns created `client_id` and (by default) logs this MCP session into it. Next step after success: - call `create_new_product`
Remote signal-found/reddit-outreach
Other tools also called create_new_account?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"email": {
"type": "string",
"title": "Email"
},
"source": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Source",
"default": null
},
"auto_login": {
"type": "boolean",
"title": "Auto Login",
"default": true
},
"business_name": {
"type": "string",
"title": "Business Name"
}
}
}