@sellable/mcp 0.1.349 → 0.1.350

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.
@@ -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 for send (approveCellId with value: true).",
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 approveCellId from row)",
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" }],
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.349",
3
+ "version": "0.1.350",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",