@kadoa/mcp 0.5.16 → 0.5.17

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -52435,7 +52435,10 @@ function registerTools(server, ctx, capabilities) {
52435
52435
  return (builder) => {
52436
52436
  const entity = builder.entity(args.entity || "Data");
52437
52437
  for (const field of args.schema) {
52438
- entity.field(field.name, field.description || field.name, field.dataType || "STRING", { example: field.example });
52438
+ entity.field(field.name, field.description || field.name, field.dataType || "STRING", {
52439
+ example: field.example,
52440
+ isKey: field.isKey
52441
+ });
52439
52442
  }
52440
52443
  return entity;
52441
52444
  };
@@ -53729,7 +53732,7 @@ var package_default;
53729
53732
  var init_package = __esm(() => {
53730
53733
  package_default = {
53731
53734
  name: "@kadoa/mcp",
53732
- version: "0.5.16",
53735
+ version: "0.5.17",
53733
53736
  description: "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
53734
53737
  type: "module",
53735
53738
  main: "dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kadoa/mcp",
3
- "version": "0.5.16",
3
+ "version": "0.5.17",
4
4
  "description": "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",