@smartytalent/mcp-tools 0.9.18 → 0.9.20

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 +38 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -17379,6 +17379,32 @@
17379
17379
  "type": "string",
17380
17380
  "description": "Returns only the tasks linked to this conversation - the\noperator orders and the escalations filed on one thread. Same\nsemantics as `filterConversationId` on listEmails. Mutually\nexclusive with every other filter at the pagination layer."
17381
17381
  },
17382
+ "filterFamily": {
17383
+ "type": "string",
17384
+ "description": "Recops board (2026-09-02): returns the tasks of one route family -\nthe part of `route` before the colon (`emails`, `jobs`, `talents`,\n`candidates`, `compliance` as families arrive), or the literal\n`escalation` for every task WITHOUT a route (an escalation the\nvirtual employee filed, a note). Any string is accepted; an\nunknown family answers an empty list, never 400. Served by\nFamilyIndex; combine with `sort=-created` for newest-first (the\npagination layer sorts the family's rows in memory). Mutually\nexclusive with the other equality filters."
17385
+ },
17386
+ "filterAuthorId": {
17387
+ "type": "string",
17388
+ "description": "Recops board: \"my orders\" - the tasks whose `relationships.author`\nis this user (the caller who filed them; the virtual employee's\nown escalations carry its user). Served by AuthorIdIndex, rows\nolder than the index were backfilled from the author link (a few\nlegacy rows have no author source and are absent). Combine with\n`sort=-created` for newest-first. Mutually exclusive with the\nother equality filters."
17389
+ },
17390
+ "filterJobId": {
17391
+ "type": "string",
17392
+ "description": "Recops board: \"this project's orders\" - the tasks whose\n`relationships.jobs` names this job (jobs:* orders and escalations\ncaptured on the project). Served by JobIdIndex, the link flattened\nat create and when it arrives on PATCH; older rows backfilled.\nCombine with `sort=-created`. Mutually exclusive with the other\nequality filters."
17393
+ },
17394
+ "filterClaimedBy": {
17395
+ "type": "string",
17396
+ "description": "Recops board: \"mine in progress\" - the tasks whose `meta.claimedBy`\nis this user. The claim is written by the client (`meta.claimedBy`\n+ `meta.claimedAt` merged per key; `null` releases) and mirrored\ninto the index key on every PATCH that names it. Served by\nClaimedByIndex. Combine with `sort=-created`. Mutually exclusive\nwith the other equality filters."
17397
+ },
17398
+ "sort": {
17399
+ "type": "string",
17400
+ "description": "Order results by a time field. Leading `-` means descending\n(newest-first). Accepted values:\n `-created` newest-first by creation time (CreatedIndex)\n `created` oldest-first by creation time\n `-modified` most-recently-modified first (ModifiedIndex)\n `modified` least-recently-modified first\nWithout any filter the list is served by the time index. With\n`filterFamily`, `filterAuthorId`, `filterClaimedBy` or\n`filterConversationId` the filter's own index is read and the\nrows are sorted in memory, so the order is honoured (cost bounded\nby the filter's scope). With `filterStatus` the sort is IGNORED\n(StatusIndex has no time key): read open statuses (small sets)\nand sort client-side, or use `sort=-created` without a filter for\nthe tenant's newest tasks. Compatible with the date-range filters.\nNote: without `sort` and without a filter the order is the base\ntable's key order, which is NOT chronological.",
17401
+ "enum": [
17402
+ "created",
17403
+ "-created",
17404
+ "modified",
17405
+ "-modified"
17406
+ ]
17407
+ },
17382
17408
  "filterCreatedFrom": {
17383
17409
  "type": "string",
17384
17410
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -17455,7 +17481,12 @@
17455
17481
  "kind": {
17456
17482
  "type": "string",
17457
17483
  "maxLength": 64,
17458
- "description": "Free-form task kind label (e.g. email_reply). Not a filter: the list door has no filterKind/filterRoute, only filterStatus."
17484
+ "description": "Free-form task kind label (e.g. email_reply). Not a filter: the list door filters by status, thread, route family (filterFamily), author and claim - never by kind."
17485
+ },
17486
+ "dueAt": {
17487
+ "type": "string",
17488
+ "format": "date-time",
17489
+ "description": "Recops board (2026-09-02): the deadline for a HUMAN to act on this task (not the sending moment of a draft - that is meta.scheduledFor). Optional; written by the client (PATCH, `null` clears) and, later, by the flows that file decision tasks. Accepted as ISO 8601 with an offset or Z (a naive value is read as UTC), always returned as UTC with Z. A moment in the past is allowed - it means \"already overdue\". Not indexed: overdue is computed on the page."
17459
17490
  },
17460
17491
  "content": {
17461
17492
  "type": "object",
@@ -17700,7 +17731,12 @@
17700
17731
  "kind": {
17701
17732
  "type": "string",
17702
17733
  "maxLength": 64,
17703
- "description": "Free-form task kind label (e.g. email_reply). Not a filter: the list door has no filterKind/filterRoute, only filterStatus."
17734
+ "description": "Free-form task kind label (e.g. email_reply). Not a filter: the list door filters by status, thread, route family (filterFamily), author and claim - never by kind."
17735
+ },
17736
+ "dueAt": {
17737
+ "type": "string",
17738
+ "format": "date-time",
17739
+ "description": "Recops board (2026-09-02): the deadline for a HUMAN to act on this task (not the sending moment of a draft - that is meta.scheduledFor). Optional; written by the client (PATCH, `null` clears) and, later, by the flows that file decision tasks. Accepted as ISO 8601 with an offset or Z (a naive value is read as UTC), always returned as UTC with Z. A moment in the past is allowed - it means \"already overdue\". Not indexed: overdue is computed on the page."
17704
17740
  },
17705
17741
  "content": {
17706
17742
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.9.18",
3
+ "version": "0.9.20",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",