@peernova/cuneiform-sf 1.0.4-beta.9 → 1.0.4
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/oclif.manifest.json +82 -82
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -280,87 +280,6 @@
|
|
|
280
280
|
"check:compatibility:cuneiform"
|
|
281
281
|
]
|
|
282
282
|
},
|
|
283
|
-
"cuneiform:mcp:serve": {
|
|
284
|
-
"aliases": [],
|
|
285
|
-
"args": {},
|
|
286
|
-
"description": "Starts the Cuneiform MCP (Model Context Protocol) server, exposing Cuneiform CLI capabilities as tools for AI assistants. Once running, an LLM client can query your org, list objects, describe fields, manage definitions, and execute profiling through natural language — using the same permissions as your CLI session.\n\nThe server registers tools across categories covering org and metadata discovery, user management, definition lifecycle, definition import/export, analysis, and profiling execution. A system prompt provides LLMs with an incremental exploration workflow for the KYCD journey.\n\nDavid Chen wires this into Claude Desktop and Cursor workflows — the registered tools give him a well-defined API contract. Marcus Thompson uses it to accelerate org exploration through conversational queries. Andre Robitaille demonstrates MCP integration during workshops, where attendees experience Cuneiform through natural dialogue.\n\nTRANSPORT: The server uses stdio (stdin/stdout) with JSON-RPC 2.0 protocol. Logging goes to stderr (enable with --debug). The stdio transport ensures the server runs locally alongside the Salesforce CLI — same machine, same authenticated session.\n\nThis command blocks until the MCP client disconnects. It is designed to be launched by an MCP client (Claude Desktop, Cursor, etc.). The access gate validates Cuneiform permissions at startup — the same gate used by all Cuneiform commands. On access gate failure, the command exits with an error describing the missing permission and how to resolve it via `user details --configure`.\n\n**When to run this command:**\n\n- AI-guided org discovery — let Claude explore a new client org through natural language\n- Hands-free definition creation — describe what you want and let the AI translate to tool calls\n- Training demonstrations — show Cuneiform capabilities through interactive AI conversation\n- Automated workflows — integrate Cuneiform tools into AI agent pipelines\n\nNATURAL LANGUAGE → FLAG MAPPING:\n\"start the MCP server\" → --target-org myOrg\n\"troubleshoot MCP tool calls\" → --target-org myOrg --debug\n\"pin a specific API version\" → --target-org myOrg --api-version 59.0\n\nCONFIGURATION: Add the server to your AI tool's settings. For Claude Desktop, add to `claude_desktop_config.json`:\n\n```json\n{\n \"mcpServers\": {\n \"cuneiform\": {\n \"command\": \"sf\",\n \"args\": [\"cuneiform\", \"mcp\", \"serve\", \"--target-org\", \"myOrg\"]\n }\n }\n}\n```",
|
|
287
|
-
"examples": [
|
|
288
|
-
"Start the MCP server for an org — the standard launch configuration:\n<%= config.bin %> <%= command.id %> --target-org myOrg",
|
|
289
|
-
"Start with debug logging — see tool invocations and parameters on stderr:\n<%= config.bin %> <%= command.id %> --target-org myOrg --debug",
|
|
290
|
-
"Pin a specific API version — for consistent behavior across environments:\n<%= config.bin %> <%= command.id %> --target-org myOrg --api-version 59.0"
|
|
291
|
-
],
|
|
292
|
-
"flags": {
|
|
293
|
-
"json": {
|
|
294
|
-
"description": "Format output as json.",
|
|
295
|
-
"helpGroup": "GLOBAL",
|
|
296
|
-
"name": "json",
|
|
297
|
-
"allowNo": false,
|
|
298
|
-
"type": "boolean"
|
|
299
|
-
},
|
|
300
|
-
"flags-dir": {
|
|
301
|
-
"helpGroup": "GLOBAL",
|
|
302
|
-
"name": "flags-dir",
|
|
303
|
-
"summary": "Import flag values from a directory.",
|
|
304
|
-
"hasDynamicHelp": false,
|
|
305
|
-
"multiple": false,
|
|
306
|
-
"type": "option"
|
|
307
|
-
},
|
|
308
|
-
"target-org": {
|
|
309
|
-
"char": "o",
|
|
310
|
-
"name": "target-org",
|
|
311
|
-
"noCacheDefault": true,
|
|
312
|
-
"required": true,
|
|
313
|
-
"summary": "The Salesforce org to connect the MCP server to. The server inherits this org's authentication for all 18 tool invocations. Specify the org alias or username.",
|
|
314
|
-
"hasDynamicHelp": true,
|
|
315
|
-
"multiple": false,
|
|
316
|
-
"type": "option"
|
|
317
|
-
},
|
|
318
|
-
"api-version": {
|
|
319
|
-
"char": "a",
|
|
320
|
-
"description": "Override the api version used for api requests made by this command",
|
|
321
|
-
"name": "api-version",
|
|
322
|
-
"summary": "Override the API version used for Salesforce API requests made through MCP tools. Use when troubleshooting version-specific behavior or testing against a specific API release.",
|
|
323
|
-
"hasDynamicHelp": false,
|
|
324
|
-
"multiple": false,
|
|
325
|
-
"type": "option"
|
|
326
|
-
},
|
|
327
|
-
"debug": {
|
|
328
|
-
"char": "d",
|
|
329
|
-
"name": "debug",
|
|
330
|
-
"summary": "Enable debug logging to stderr. Shows tool invocations, parameters, and response metadata for troubleshooting MCP communication. stdout remains reserved for MCP protocol traffic.",
|
|
331
|
-
"allowNo": false,
|
|
332
|
-
"type": "boolean"
|
|
333
|
-
}
|
|
334
|
-
},
|
|
335
|
-
"hasDynamicHelp": true,
|
|
336
|
-
"hidden": true,
|
|
337
|
-
"hiddenAliases": [],
|
|
338
|
-
"id": "cuneiform:mcp:serve",
|
|
339
|
-
"pluginAlias": "@peernova/cuneiform-sf",
|
|
340
|
-
"pluginName": "@peernova/cuneiform-sf",
|
|
341
|
-
"pluginType": "core",
|
|
342
|
-
"strict": true,
|
|
343
|
-
"summary": "Start the MCP server to expose 18 Cuneiform tools to AI assistants — enabling natural language org discovery, definition management, and profiling through Claude Desktop, Cursor, or any MCP client.",
|
|
344
|
-
"enableJsonFlag": true,
|
|
345
|
-
"skipAccessGate": false,
|
|
346
|
-
"isESM": true,
|
|
347
|
-
"relativePath": [
|
|
348
|
-
"lib",
|
|
349
|
-
"commands",
|
|
350
|
-
"cuneiform",
|
|
351
|
-
"mcp",
|
|
352
|
-
"serve.js"
|
|
353
|
-
],
|
|
354
|
-
"aliasPermutations": [],
|
|
355
|
-
"permutations": [
|
|
356
|
-
"cuneiform:mcp:serve",
|
|
357
|
-
"mcp:cuneiform:serve",
|
|
358
|
-
"mcp:serve:cuneiform",
|
|
359
|
-
"cuneiform:serve:mcp",
|
|
360
|
-
"serve:cuneiform:mcp",
|
|
361
|
-
"serve:mcp:cuneiform"
|
|
362
|
-
]
|
|
363
|
-
},
|
|
364
283
|
"cuneiform:definition:create": {
|
|
365
284
|
"aliases": [],
|
|
366
285
|
"args": {},
|
|
@@ -1494,6 +1413,87 @@
|
|
|
1494
1413
|
"update:definition:cuneiform"
|
|
1495
1414
|
]
|
|
1496
1415
|
},
|
|
1416
|
+
"cuneiform:mcp:serve": {
|
|
1417
|
+
"aliases": [],
|
|
1418
|
+
"args": {},
|
|
1419
|
+
"description": "Starts the Cuneiform MCP (Model Context Protocol) server, exposing Cuneiform CLI capabilities as tools for AI assistants. Once running, an LLM client can query your org, list objects, describe fields, manage definitions, and execute profiling through natural language — using the same permissions as your CLI session.\n\nThe server registers tools across categories covering org and metadata discovery, user management, definition lifecycle, definition import/export, analysis, and profiling execution. A system prompt provides LLMs with an incremental exploration workflow for the KYCD journey.\n\nDavid Chen wires this into Claude Desktop and Cursor workflows — the registered tools give him a well-defined API contract. Marcus Thompson uses it to accelerate org exploration through conversational queries. Andre Robitaille demonstrates MCP integration during workshops, where attendees experience Cuneiform through natural dialogue.\n\nTRANSPORT: The server uses stdio (stdin/stdout) with JSON-RPC 2.0 protocol. Logging goes to stderr (enable with --debug). The stdio transport ensures the server runs locally alongside the Salesforce CLI — same machine, same authenticated session.\n\nThis command blocks until the MCP client disconnects. It is designed to be launched by an MCP client (Claude Desktop, Cursor, etc.). The access gate validates Cuneiform permissions at startup — the same gate used by all Cuneiform commands. On access gate failure, the command exits with an error describing the missing permission and how to resolve it via `user details --configure`.\n\n**When to run this command:**\n\n- AI-guided org discovery — let Claude explore a new client org through natural language\n- Hands-free definition creation — describe what you want and let the AI translate to tool calls\n- Training demonstrations — show Cuneiform capabilities through interactive AI conversation\n- Automated workflows — integrate Cuneiform tools into AI agent pipelines\n\nNATURAL LANGUAGE → FLAG MAPPING:\n\"start the MCP server\" → --target-org myOrg\n\"troubleshoot MCP tool calls\" → --target-org myOrg --debug\n\"pin a specific API version\" → --target-org myOrg --api-version 59.0\n\nCONFIGURATION: Add the server to your AI tool's settings. For Claude Desktop, add to `claude_desktop_config.json`:\n\n```json\n{\n \"mcpServers\": {\n \"cuneiform\": {\n \"command\": \"sf\",\n \"args\": [\"cuneiform\", \"mcp\", \"serve\", \"--target-org\", \"myOrg\"]\n }\n }\n}\n```",
|
|
1420
|
+
"examples": [
|
|
1421
|
+
"Start the MCP server for an org — the standard launch configuration:\n<%= config.bin %> <%= command.id %> --target-org myOrg",
|
|
1422
|
+
"Start with debug logging — see tool invocations and parameters on stderr:\n<%= config.bin %> <%= command.id %> --target-org myOrg --debug",
|
|
1423
|
+
"Pin a specific API version — for consistent behavior across environments:\n<%= config.bin %> <%= command.id %> --target-org myOrg --api-version 59.0"
|
|
1424
|
+
],
|
|
1425
|
+
"flags": {
|
|
1426
|
+
"json": {
|
|
1427
|
+
"description": "Format output as json.",
|
|
1428
|
+
"helpGroup": "GLOBAL",
|
|
1429
|
+
"name": "json",
|
|
1430
|
+
"allowNo": false,
|
|
1431
|
+
"type": "boolean"
|
|
1432
|
+
},
|
|
1433
|
+
"flags-dir": {
|
|
1434
|
+
"helpGroup": "GLOBAL",
|
|
1435
|
+
"name": "flags-dir",
|
|
1436
|
+
"summary": "Import flag values from a directory.",
|
|
1437
|
+
"hasDynamicHelp": false,
|
|
1438
|
+
"multiple": false,
|
|
1439
|
+
"type": "option"
|
|
1440
|
+
},
|
|
1441
|
+
"target-org": {
|
|
1442
|
+
"char": "o",
|
|
1443
|
+
"name": "target-org",
|
|
1444
|
+
"noCacheDefault": true,
|
|
1445
|
+
"required": true,
|
|
1446
|
+
"summary": "The Salesforce org to connect the MCP server to. The server inherits this org's authentication for all 18 tool invocations. Specify the org alias or username.",
|
|
1447
|
+
"hasDynamicHelp": true,
|
|
1448
|
+
"multiple": false,
|
|
1449
|
+
"type": "option"
|
|
1450
|
+
},
|
|
1451
|
+
"api-version": {
|
|
1452
|
+
"char": "a",
|
|
1453
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1454
|
+
"name": "api-version",
|
|
1455
|
+
"summary": "Override the API version used for Salesforce API requests made through MCP tools. Use when troubleshooting version-specific behavior or testing against a specific API release.",
|
|
1456
|
+
"hasDynamicHelp": false,
|
|
1457
|
+
"multiple": false,
|
|
1458
|
+
"type": "option"
|
|
1459
|
+
},
|
|
1460
|
+
"debug": {
|
|
1461
|
+
"char": "d",
|
|
1462
|
+
"name": "debug",
|
|
1463
|
+
"summary": "Enable debug logging to stderr. Shows tool invocations, parameters, and response metadata for troubleshooting MCP communication. stdout remains reserved for MCP protocol traffic.",
|
|
1464
|
+
"allowNo": false,
|
|
1465
|
+
"type": "boolean"
|
|
1466
|
+
}
|
|
1467
|
+
},
|
|
1468
|
+
"hasDynamicHelp": true,
|
|
1469
|
+
"hidden": true,
|
|
1470
|
+
"hiddenAliases": [],
|
|
1471
|
+
"id": "cuneiform:mcp:serve",
|
|
1472
|
+
"pluginAlias": "@peernova/cuneiform-sf",
|
|
1473
|
+
"pluginName": "@peernova/cuneiform-sf",
|
|
1474
|
+
"pluginType": "core",
|
|
1475
|
+
"strict": true,
|
|
1476
|
+
"summary": "Start the MCP server to expose 18 Cuneiform tools to AI assistants — enabling natural language org discovery, definition management, and profiling through Claude Desktop, Cursor, or any MCP client.",
|
|
1477
|
+
"enableJsonFlag": true,
|
|
1478
|
+
"skipAccessGate": false,
|
|
1479
|
+
"isESM": true,
|
|
1480
|
+
"relativePath": [
|
|
1481
|
+
"lib",
|
|
1482
|
+
"commands",
|
|
1483
|
+
"cuneiform",
|
|
1484
|
+
"mcp",
|
|
1485
|
+
"serve.js"
|
|
1486
|
+
],
|
|
1487
|
+
"aliasPermutations": [],
|
|
1488
|
+
"permutations": [
|
|
1489
|
+
"cuneiform:mcp:serve",
|
|
1490
|
+
"mcp:cuneiform:serve",
|
|
1491
|
+
"mcp:serve:cuneiform",
|
|
1492
|
+
"cuneiform:serve:mcp",
|
|
1493
|
+
"serve:cuneiform:mcp",
|
|
1494
|
+
"serve:mcp:cuneiform"
|
|
1495
|
+
]
|
|
1496
|
+
},
|
|
1497
1497
|
"cuneiform:object:describe": {
|
|
1498
1498
|
"aliases": [],
|
|
1499
1499
|
"args": {},
|
|
@@ -2897,5 +2897,5 @@
|
|
|
2897
2897
|
]
|
|
2898
2898
|
}
|
|
2899
2899
|
},
|
|
2900
|
-
"version": "1.0.4
|
|
2900
|
+
"version": "1.0.4"
|
|
2901
2901
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peernova/cuneiform-sf",
|
|
3
3
|
"description": "Cuneiform for Salesforce CLI-Powered Data Profiling",
|
|
4
|
-
"version": "1.0.4
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"cuneiform": {
|
|
6
6
|
"_comment": "Compatibility manifest. CLI-2932. requiredAppVersion is the minimum Cuneiform For Salesforce managed package version this CLI build expects in the target org. Update at release time alongside the CLI version. See README → Compatibility.",
|
|
7
7
|
"requiredAppVersion": "4.12.0.17"
|