upsell.task_volume
Servilleta free-tier tasker is at or near their active task limit (3 concurrent) or has reached a completed-task volume milestone (10/25/50). Camino surfaces a Pro Tasker upgrade recommendation.
Senders
servilleta
Receivers
camino
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"taskerId": "string",
"completedTasks": "number",
"activeTasks": "number",
"maxActiveTasks": "number",
"utilizationPercent": "number",
"plan": "string",
"suggestedPlan": "string",
"triggerReason": "string (active_limit_reached|approaching_active_limit|volume_milestone)"
}Example payload
The following is a synthetic payload that matches the schema. Production payloads are signed with HMAC-SHA256 and delivered to each receiver's registered webhook endpoint.
json
{
"taskerId": "example-taskerId",
"completedTasks": 0,
"activeTasks": 0,
"maxActiveTasks": 0,
"utilizationPercent": 0,
"plan": "example-plan",
"suggestedPlan": "example-suggestedPlan",
"triggerReason": "active_limit_reached"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.