@sellable/mcp 0.1.349 → 0.1.351
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/tools/cells.js
CHANGED
|
@@ -2,13 +2,13 @@ import { getApi } from "../api.js";
|
|
|
2
2
|
export const cellToolDefinitions = [
|
|
3
3
|
{
|
|
4
4
|
name: "update_cell",
|
|
5
|
-
description: "Update a cell's value. Use for saving crafted messages (messageCellId/subjectCellId), marking examples (exampleCellId with value: true/false), or approving
|
|
5
|
+
description: "Update a cell's value. Use for saving crafted messages (messageCellId/subjectCellId), marking examples (exampleCellId with value: true/false), or approving an explicitly selected semantic Approved cell. For route-proof or send-review approval, use the approve cell returned by get_campaign_messages_preview or select_campaign_cells, not get_rows alone.",
|
|
6
6
|
inputSchema: {
|
|
7
7
|
type: "object",
|
|
8
8
|
properties: {
|
|
9
9
|
cellId: {
|
|
10
10
|
type: "string",
|
|
11
|
-
description: "Cell ID (messageCellId/subjectCellId, exampleCellId, or
|
|
11
|
+
description: "Cell ID (messageCellId/subjectCellId, exampleCellId, or a semantic Approved cell from preview/selector; not a stale get_rows approveCellId)",
|
|
12
12
|
},
|
|
13
13
|
value: {
|
|
14
14
|
oneOf: [{ type: "string" }, { type: "boolean" }, { type: "object" }],
|
package/dist/tools/rows.js
CHANGED
|
@@ -50,7 +50,7 @@ export const rowToolDefinitions = [
|
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
name: "get_rows",
|
|
53
|
-
description: "Get row details for crafting. Returns: name, company, title, linkedinUrl, currentMessage, currentSubject, messageCellId, subjectCellId, approveCellId, exampleCellId, isExample, carryData (extra CSV columns like 'Jobs Hiring For'), enrichment (summary, experience, education). Use after selecting a lead.",
|
|
53
|
+
description: "Get row details for crafting. Returns: name, company, title, linkedinUrl, currentMessage, currentSubject, messageCellId, subjectCellId, approveCellId, exampleCellId, isExample, carryData (extra CSV columns like 'Jobs Hiring For'), enrichment (summary, experience, education). Use after selecting a lead. Do not treat approveCellId from get_rows as the product-visible approval source of truth; on campaign tables it can differ from the send-review Approved column. For route-proof or send-review approval, use get_campaign_messages_preview or select_campaign_cells to select the semantic Approved cell.",
|
|
54
54
|
inputSchema: {
|
|
55
55
|
type: "object",
|
|
56
56
|
properties: {
|
package/package.json
CHANGED
|
@@ -135,7 +135,9 @@ not a parent-thread summary. The receipt must include:
|
|
|
135
135
|
|
|
136
136
|
- `setupPlanCall`: the exact `setup_evergreen_campaigns({ mode:"plan", ... })`
|
|
137
137
|
planRevision, selected actionId, lane key, workspace id, sender ids, and
|
|
138
|
-
campaign/table binding or create intent used before work started.
|
|
138
|
+
campaign/table binding or create intent used before work started. For a
|
|
139
|
+
create lane, this receipt must explicitly include `createIntent:true`; for a
|
|
140
|
+
reuse lane, do not report `createIntent:true`.
|
|
139
141
|
- `campaignBriefReceipt`: the CampaignOffer/campaign id, current
|
|
140
142
|
workflowTableId, brief hash or updated-at marker, delivery format, token
|
|
141
143
|
rules, hard avoids, source-use rules, and first-message template state.
|