@smartytalent/mcp-tools 0.2.5-dev.1 → 0.3.0

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/tools.json +37 -4
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -110,7 +110,8 @@
110
110
  "type": "string"
111
111
  },
112
112
  "shortCode": {
113
- "type": "string"
113
+ "type": "string",
114
+ "description": "Tenant short code - the tenant's global handle. NEW codes must be 3-32 lowercase letters/digits (no hyphens; server-validated) and are globally unique (claim registry; duplicates are rejected with 400). Derives the virtual employee's default address boe.{shortCode}@ai.{domain}. Immutable after create. Legacy tenants may carry a '-{n}'-suffixed value."
114
115
  },
115
116
  "archivedAt": {
116
117
  "type": "string",
@@ -239,7 +240,7 @@
239
240
  },
240
241
  "boeEmail": {
241
242
  "type": "string",
242
- "description": "Email address assigned to the Boe AI agent for this tenant"
243
+ "description": "Email address of the tenant's virtual employee (Boe). SERVER-DERIVED at tenant create as boe.{shortCode}@ai.{domain} - client-supplied values on POST are ignored. The user row is becoming the source of truth (Arc B); treat this attribute as read-only."
243
244
  },
244
245
  "defaultFormId": {
245
246
  "type": "string",
@@ -433,7 +434,8 @@
433
434
  "type": "string"
434
435
  },
435
436
  "shortCode": {
436
- "type": "string"
437
+ "type": "string",
438
+ "description": "Tenant short code - the tenant's global handle. NEW codes must be 3-32 lowercase letters/digits (no hyphens; server-validated) and are globally unique (claim registry; duplicates are rejected with 400). Derives the virtual employee's default address boe.{shortCode}@ai.{domain}. Immutable after create. Legacy tenants may carry a '-{n}'-suffixed value."
437
439
  },
438
440
  "archivedAt": {
439
441
  "type": "string",
@@ -562,7 +564,7 @@
562
564
  },
563
565
  "boeEmail": {
564
566
  "type": "string",
565
- "description": "Email address assigned to the Boe AI agent for this tenant"
567
+ "description": "Email address of the tenant's virtual employee (Boe). SERVER-DERIVED at tenant create as boe.{shortCode}@ai.{domain} - client-supplied values on POST are ignored. The user row is becoming the source of truth (Arc B); treat this attribute as read-only."
566
568
  },
567
569
  "defaultFormId": {
568
570
  "type": "string",
@@ -14260,6 +14262,37 @@
14260
14262
  "operationId": "signalOptions"
14261
14263
  }
14262
14264
  },
14265
+ {
14266
+ "name": "list_claims",
14267
+ "description": "Check Claim Availability",
14268
+ "inputSchema": {
14269
+ "type": "object",
14270
+ "properties": {
14271
+ "filterType": {
14272
+ "type": "string",
14273
+ "description": "filterType parameter",
14274
+ "enum": [
14275
+ "shortcode",
14276
+ "email",
14277
+ "phone"
14278
+ ]
14279
+ },
14280
+ "filterValue": {
14281
+ "type": "string",
14282
+ "description": "The exact name to check (email address, E.164 phone, or shortCode). Normalized to lowercase server-side."
14283
+ }
14284
+ },
14285
+ "required": [
14286
+ "filterType",
14287
+ "filterValue"
14288
+ ]
14289
+ },
14290
+ "_meta": {
14291
+ "method": "GET",
14292
+ "path": "/v1/claims",
14293
+ "operationId": "listClaims"
14294
+ }
14295
+ },
14263
14296
  {
14264
14297
  "name": "list_labels",
14265
14298
  "description": "List Labels",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.2.5-dev.1",
3
+ "version": "0.3.0",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",