@smartytalent/mcp-tools 0.1.18 → 0.1.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 +793 -67
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7170,77 +7170,709 @@
7170
7170
  }
7171
7171
  },
7172
7172
  {
7173
- "name": "create_submission",
7174
- "description": "Create Submission",
7173
+ "name": "list_feedbacks",
7174
+ "description": "List Feedbacks",
7175
7175
  "inputSchema": {
7176
7176
  "type": "object",
7177
- "required": [
7178
- "name",
7179
- "email",
7180
- "tenantId",
7181
- "formId"
7182
- ],
7183
7177
  "properties": {
7184
- "tenantId": {
7185
- "type": "string"
7178
+ "filterStatus": {
7179
+ "type": "string",
7180
+ "description": "Returns feedbacks with the current status.",
7181
+ "enum": [
7182
+ "active",
7183
+ "draft",
7184
+ "archived",
7185
+ "failed"
7186
+ ]
7186
7187
  },
7187
- "formId": {
7188
- "type": "string"
7188
+ "filterCreatedFrom": {
7189
+ "type": "string",
7190
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
7189
7191
  },
7190
- "name": {
7191
- "type": "string"
7192
+ "filterCreatedTo": {
7193
+ "type": "string",
7194
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
7192
7195
  },
7193
- "email": {
7194
- "type": "string"
7196
+ "filterModifiedFrom": {
7197
+ "type": "string",
7198
+ "description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
7195
7199
  },
7196
- "phone": {
7197
- "type": "string"
7200
+ "filterModifiedTo": {
7201
+ "type": "string",
7202
+ "description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
7198
7203
  },
7199
- "files": {
7200
- "type": "array",
7201
- "items": {
7202
- "type": "object",
7203
- "properties": {
7204
- "fileKey": {
7205
- "type": "string"
7206
- },
7207
- "originalFilename": {
7208
- "type": "string"
7204
+ "pageSize": {
7205
+ "type": "integer",
7206
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
7207
+ },
7208
+ "pageNumber": {
7209
+ "type": "integer",
7210
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
7211
+ },
7212
+ "pageAfter": {
7213
+ "type": "string",
7214
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
7215
+ },
7216
+ "pageBefore": {
7217
+ "type": "string",
7218
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
7219
+ }
7220
+ }
7221
+ },
7222
+ "_meta": {
7223
+ "method": "GET",
7224
+ "path": "/v1/feedbacks",
7225
+ "operationId": "listFeedbacks"
7226
+ }
7227
+ },
7228
+ {
7229
+ "name": "create_feedback",
7230
+ "description": "Create Feedback",
7231
+ "inputSchema": {
7232
+ "title": "CreateFeedbackRequestBody",
7233
+ "type": "object",
7234
+ "required": [
7235
+ "data"
7236
+ ],
7237
+ "properties": {
7238
+ "data": {
7239
+ "title": "CreateFeedbackRequestBodyData",
7240
+ "type": "object",
7241
+ "required": [
7242
+ "type",
7243
+ "attributes"
7244
+ ],
7245
+ "properties": {
7246
+ "type": {
7247
+ "type": "string",
7248
+ "enum": [
7249
+ "feedbacks"
7250
+ ]
7251
+ },
7252
+ "attributes": {
7253
+ "title": "FeedbackAttributesSchema",
7254
+ "type": "object",
7255
+ "required": [
7256
+ "name"
7257
+ ],
7258
+ "properties": {
7259
+ "name": {
7260
+ "type": "string"
7261
+ },
7262
+ "transparency": {
7263
+ "type": "string",
7264
+ "enum": [
7265
+ "generic",
7266
+ "category",
7267
+ "specific"
7268
+ ]
7269
+ },
7270
+ "tone": {
7271
+ "type": "string",
7272
+ "enum": [
7273
+ "casual",
7274
+ "formal",
7275
+ "superFormal"
7276
+ ]
7277
+ },
7278
+ "delay": {
7279
+ "type": "integer",
7280
+ "default": 72
7281
+ },
7282
+ "respectBusinessDays": {
7283
+ "type": "boolean",
7284
+ "default": false
7285
+ },
7286
+ "signature": {
7287
+ "type": "object",
7288
+ "properties": {
7289
+ "name": {
7290
+ "type": "string"
7291
+ },
7292
+ "title": {
7293
+ "type": "string"
7294
+ },
7295
+ "company": {
7296
+ "type": "string"
7297
+ }
7298
+ }
7299
+ },
7300
+ "aiDisclosure": {
7301
+ "type": "boolean",
7302
+ "default": true
7303
+ },
7304
+ "instructions": {
7305
+ "type": "string"
7306
+ },
7307
+ "categories": {
7308
+ "type": "array",
7309
+ "items": {
7310
+ "type": "string"
7311
+ }
7312
+ },
7313
+ "reasons": {
7314
+ "type": "array",
7315
+ "items": {
7316
+ "type": "string"
7317
+ }
7318
+ },
7319
+ "links": {
7320
+ "type": "array",
7321
+ "items": {
7322
+ "type": "object",
7323
+ "properties": {
7324
+ "label": {
7325
+ "type": "string"
7326
+ },
7327
+ "url": {
7328
+ "type": "string"
7329
+ }
7330
+ }
7331
+ }
7332
+ },
7333
+ "feedbackFormUrl": {
7334
+ "type": "string"
7335
+ },
7336
+ "status": {
7337
+ "type": "string",
7338
+ "enum": [
7339
+ "active",
7340
+ "draft",
7341
+ "archived",
7342
+ "failed"
7343
+ ]
7344
+ },
7345
+ "source": {
7346
+ "type": "string"
7347
+ },
7348
+ "timestamps": {
7349
+ "title": "ResourceTimestampsSchema",
7350
+ "type": "object",
7351
+ "properties": {
7352
+ "created": {
7353
+ "type": "string",
7354
+ "format": "date-time"
7355
+ },
7356
+ "modified": {
7357
+ "type": "string",
7358
+ "format": "date-time"
7359
+ }
7360
+ }
7361
+ }
7362
+ }
7363
+ },
7364
+ "relationships": {
7365
+ "title": "FeedbackRelationshipsSchema",
7366
+ "type": "object",
7367
+ "properties": {
7368
+ "jobs": {
7369
+ "title": "FeedbackRelationshipsJobsSchema",
7370
+ "type": "object",
7371
+ "properties": {
7372
+ "data": {
7373
+ "type": "object",
7374
+ "properties": {
7375
+ "type": {
7376
+ "type": "string"
7377
+ },
7378
+ "id": {
7379
+ "type": "string"
7380
+ }
7381
+ }
7382
+ }
7383
+ }
7384
+ }
7385
+ }
7386
+ }
7387
+ }
7388
+ }
7389
+ }
7390
+ },
7391
+ "_meta": {
7392
+ "method": "POST",
7393
+ "path": "/v1/feedbacks",
7394
+ "operationId": "createFeedback"
7395
+ }
7396
+ },
7397
+ {
7398
+ "name": "feedbacks_options",
7399
+ "description": "Feedbacks Options",
7400
+ "inputSchema": {
7401
+ "type": "object",
7402
+ "properties": {}
7403
+ },
7404
+ "_meta": {
7405
+ "method": "OPTIONS",
7406
+ "path": "/v1/feedbacks",
7407
+ "operationId": "feedbacksOptions"
7408
+ }
7409
+ },
7410
+ {
7411
+ "name": "show_feedback",
7412
+ "description": "Show Feedback",
7413
+ "inputSchema": {
7414
+ "type": "object",
7415
+ "properties": {
7416
+ "feedbackId": {
7417
+ "type": "string",
7418
+ "description": "feedbackId parameter"
7419
+ }
7420
+ },
7421
+ "required": [
7422
+ "feedbackId"
7423
+ ]
7424
+ },
7425
+ "_meta": {
7426
+ "method": "GET",
7427
+ "path": "/v1/feedbacks/{feedbackId}",
7428
+ "operationId": "showFeedback"
7429
+ }
7430
+ },
7431
+ {
7432
+ "name": "update_feedback",
7433
+ "description": "Update Feedback",
7434
+ "inputSchema": {
7435
+ "type": "object",
7436
+ "properties": {
7437
+ "feedbackId": {
7438
+ "type": "string",
7439
+ "description": "feedbackId parameter"
7440
+ },
7441
+ "requestBody": {
7442
+ "title": "UpdateFeedbackRequestBody",
7443
+ "type": "object",
7444
+ "required": [
7445
+ "data"
7446
+ ],
7447
+ "properties": {
7448
+ "data": {
7449
+ "title": "UpdateFeedbackRequestBodyData",
7450
+ "type": "object",
7451
+ "required": [
7452
+ "type",
7453
+ "id",
7454
+ "attributes"
7455
+ ],
7456
+ "properties": {
7457
+ "type": {
7458
+ "type": "string",
7459
+ "enum": [
7460
+ "feedbacks"
7461
+ ]
7462
+ },
7463
+ "id": {
7464
+ "type": "string"
7465
+ },
7466
+ "attributes": {
7467
+ "title": "FeedbackAttributesSchema",
7468
+ "type": "object",
7469
+ "required": [
7470
+ "name"
7471
+ ],
7472
+ "properties": {
7473
+ "name": {
7474
+ "type": "string"
7475
+ },
7476
+ "transparency": {
7477
+ "type": "string",
7478
+ "enum": [
7479
+ "generic",
7480
+ "category",
7481
+ "specific"
7482
+ ]
7483
+ },
7484
+ "tone": {
7485
+ "type": "string",
7486
+ "enum": [
7487
+ "casual",
7488
+ "formal",
7489
+ "superFormal"
7490
+ ]
7491
+ },
7492
+ "delay": {
7493
+ "type": "integer",
7494
+ "default": 72
7495
+ },
7496
+ "respectBusinessDays": {
7497
+ "type": "boolean",
7498
+ "default": false
7499
+ },
7500
+ "signature": {
7501
+ "type": "object",
7502
+ "properties": {
7503
+ "name": {
7504
+ "type": "string"
7505
+ },
7506
+ "title": {
7507
+ "type": "string"
7508
+ },
7509
+ "company": {
7510
+ "type": "string"
7511
+ }
7512
+ }
7513
+ },
7514
+ "aiDisclosure": {
7515
+ "type": "boolean",
7516
+ "default": true
7517
+ },
7518
+ "instructions": {
7519
+ "type": "string"
7520
+ },
7521
+ "categories": {
7522
+ "type": "array",
7523
+ "items": {
7524
+ "type": "string"
7525
+ }
7526
+ },
7527
+ "reasons": {
7528
+ "type": "array",
7529
+ "items": {
7530
+ "type": "string"
7531
+ }
7532
+ },
7533
+ "links": {
7534
+ "type": "array",
7535
+ "items": {
7536
+ "type": "object",
7537
+ "properties": {
7538
+ "label": {
7539
+ "type": "string"
7540
+ },
7541
+ "url": {
7542
+ "type": "string"
7543
+ }
7544
+ }
7545
+ }
7546
+ },
7547
+ "feedbackFormUrl": {
7548
+ "type": "string"
7549
+ },
7550
+ "status": {
7551
+ "type": "string",
7552
+ "enum": [
7553
+ "active",
7554
+ "draft",
7555
+ "archived",
7556
+ "failed"
7557
+ ]
7558
+ },
7559
+ "source": {
7560
+ "type": "string"
7561
+ },
7562
+ "timestamps": {
7563
+ "title": "ResourceTimestampsSchema",
7564
+ "type": "object",
7565
+ "properties": {
7566
+ "created": {
7567
+ "type": "string",
7568
+ "format": "date-time"
7569
+ },
7570
+ "modified": {
7571
+ "type": "string",
7572
+ "format": "date-time"
7573
+ }
7574
+ }
7575
+ }
7576
+ }
7577
+ },
7578
+ "relationships": {
7579
+ "title": "FeedbackRelationshipsSchema",
7580
+ "type": "object",
7581
+ "properties": {
7582
+ "jobs": {
7583
+ "title": "FeedbackRelationshipsJobsSchema",
7584
+ "type": "object",
7585
+ "properties": {
7586
+ "data": {
7587
+ "type": "object",
7588
+ "properties": {
7589
+ "type": {
7590
+ "type": "string"
7591
+ },
7592
+ "id": {
7593
+ "type": "string"
7594
+ }
7595
+ }
7596
+ }
7597
+ }
7598
+ }
7599
+ }
7600
+ }
7601
+ }
7602
+ }
7603
+ }
7604
+ }
7605
+ },
7606
+ "required": [
7607
+ "feedbackId",
7608
+ "requestBody"
7609
+ ]
7610
+ },
7611
+ "_meta": {
7612
+ "method": "PATCH",
7613
+ "path": "/v1/feedbacks/{feedbackId}",
7614
+ "operationId": "updateFeedback"
7615
+ }
7616
+ },
7617
+ {
7618
+ "name": "delete_feedback",
7619
+ "description": "Delete Feedback",
7620
+ "inputSchema": {
7621
+ "type": "object",
7622
+ "properties": {
7623
+ "feedbackId": {
7624
+ "type": "string",
7625
+ "description": "feedbackId parameter"
7626
+ },
7627
+ "permanentDelete": {
7628
+ "type": "string",
7629
+ "description": "Set to true for permanent deletion.",
7630
+ "enum": [
7631
+ "true",
7632
+ "false"
7633
+ ]
7634
+ }
7635
+ },
7636
+ "required": [
7637
+ "feedbackId"
7638
+ ]
7639
+ },
7640
+ "_meta": {
7641
+ "method": "DELETE",
7642
+ "path": "/v1/feedbacks/{feedbackId}",
7643
+ "operationId": "deleteFeedback"
7644
+ }
7645
+ },
7646
+ {
7647
+ "name": "feedback_options",
7648
+ "description": "Feedback Options",
7649
+ "inputSchema": {
7650
+ "type": "object",
7651
+ "properties": {}
7652
+ },
7653
+ "_meta": {
7654
+ "method": "OPTIONS",
7655
+ "path": "/v1/feedbacks/{feedbackId}",
7656
+ "operationId": "feedbackOptions"
7657
+ }
7658
+ },
7659
+ {
7660
+ "name": "create_submission",
7661
+ "description": "Create Submission",
7662
+ "inputSchema": {
7663
+ "title": "CreateSubmissionRequestBody",
7664
+ "type": "object",
7665
+ "required": [
7666
+ "data"
7667
+ ],
7668
+ "properties": {
7669
+ "data": {
7670
+ "title": "CreateSubmissionRequestBodyData",
7671
+ "type": "object",
7672
+ "required": [
7673
+ "type",
7674
+ "attributes"
7675
+ ],
7676
+ "properties": {
7677
+ "type": {
7678
+ "type": "string",
7679
+ "enum": [
7680
+ "submissions"
7681
+ ]
7682
+ },
7683
+ "attributes": {
7684
+ "title": "SubmissionAttributesSchema",
7685
+ "type": "object",
7686
+ "required": [
7687
+ "name",
7688
+ "email"
7689
+ ],
7690
+ "properties": {
7691
+ "name": {
7692
+ "type": "string"
7693
+ },
7694
+ "email": {
7695
+ "type": "string"
7696
+ },
7697
+ "phone": {
7698
+ "type": "string"
7699
+ },
7700
+ "source": {
7701
+ "type": "string",
7702
+ "enum": [
7703
+ "form",
7704
+ "email",
7705
+ "call",
7706
+ "api"
7707
+ ]
7708
+ },
7709
+ "status": {
7710
+ "type": "string",
7711
+ "enum": [
7712
+ "received",
7713
+ "processing",
7714
+ "processed",
7715
+ "failed"
7716
+ ]
7717
+ },
7718
+ "language": {
7719
+ "type": "string"
7720
+ },
7721
+ "fields": {
7722
+ "type": "object",
7723
+ "description": "Custom form field answers keyed by field identifier"
7724
+ },
7725
+ "files": {
7726
+ "type": "array",
7727
+ "items": {
7728
+ "type": "object",
7729
+ "properties": {
7730
+ "key": {
7731
+ "type": "string"
7732
+ },
7733
+ "bucket": {
7734
+ "type": "string"
7735
+ },
7736
+ "name": {
7737
+ "type": "string"
7738
+ },
7739
+ "contentType": {
7740
+ "type": "string"
7741
+ }
7742
+ }
7743
+ }
7744
+ },
7745
+ "referral": {
7746
+ "type": "object",
7747
+ "properties": {
7748
+ "referrerName": {
7749
+ "type": "string"
7750
+ },
7751
+ "referrerEmail": {
7752
+ "type": "string"
7753
+ },
7754
+ "relationship": {
7755
+ "type": "string"
7756
+ },
7757
+ "note": {
7758
+ "type": "string"
7759
+ }
7760
+ }
7761
+ },
7762
+ "consent": {
7763
+ "type": "object",
7764
+ "properties": {
7765
+ "current": {
7766
+ "type": "boolean"
7767
+ },
7768
+ "future": {
7769
+ "type": "boolean"
7770
+ }
7771
+ }
7772
+ },
7773
+ "timestamps": {
7774
+ "title": "ResourceTimestampsSchema",
7775
+ "type": "object",
7776
+ "properties": {
7777
+ "created": {
7778
+ "type": "string",
7779
+ "format": "date-time"
7780
+ },
7781
+ "modified": {
7782
+ "type": "string",
7783
+ "format": "date-time"
7784
+ }
7785
+ }
7786
+ }
7209
7787
  }
7210
- }
7211
- }
7212
- },
7213
- "fields": {
7214
- "type": "object"
7215
- },
7216
- "language": {
7217
- "type": "string"
7218
- },
7219
- "jobId": {
7220
- "type": "string"
7221
- },
7222
- "referral": {
7223
- "type": "object",
7224
- "properties": {
7225
- "referrerName": {
7226
- "type": "string"
7227
- },
7228
- "referrerEmail": {
7229
- "type": "string"
7230
- },
7231
- "relationship": {
7232
- "type": "string"
7233
7788
  },
7234
- "note": {
7235
- "type": "string"
7789
+ "relationships": {
7790
+ "title": "SubmissionRelationshipsSchema",
7791
+ "type": "object",
7792
+ "properties": {
7793
+ "forms": {
7794
+ "title": "SubmissionRelationshipsFormsSchema",
7795
+ "type": "object",
7796
+ "properties": {
7797
+ "data": {
7798
+ "type": "array",
7799
+ "items": {
7800
+ "type": "object",
7801
+ "properties": {
7802
+ "type": {
7803
+ "type": "string"
7804
+ },
7805
+ "id": {
7806
+ "type": "string"
7807
+ }
7808
+ }
7809
+ }
7810
+ }
7811
+ }
7812
+ },
7813
+ "jobs": {
7814
+ "title": "SubmissionRelationshipsJobsSchema",
7815
+ "type": "object",
7816
+ "properties": {
7817
+ "data": {
7818
+ "type": "array",
7819
+ "items": {
7820
+ "type": "object",
7821
+ "properties": {
7822
+ "type": {
7823
+ "type": "string"
7824
+ },
7825
+ "id": {
7826
+ "type": "string"
7827
+ }
7828
+ }
7829
+ }
7830
+ }
7831
+ }
7832
+ },
7833
+ "talents": {
7834
+ "title": "SubmissionRelationshipsTalentsSchema",
7835
+ "type": "object",
7836
+ "properties": {
7837
+ "data": {
7838
+ "type": "array",
7839
+ "items": {
7840
+ "type": "object",
7841
+ "properties": {
7842
+ "type": {
7843
+ "type": "string"
7844
+ },
7845
+ "id": {
7846
+ "type": "string"
7847
+ }
7848
+ }
7849
+ }
7850
+ }
7851
+ }
7852
+ },
7853
+ "candidates": {
7854
+ "title": "SubmissionRelationshipsCandidatesSchema",
7855
+ "type": "object",
7856
+ "properties": {
7857
+ "data": {
7858
+ "type": "array",
7859
+ "items": {
7860
+ "type": "object",
7861
+ "properties": {
7862
+ "type": {
7863
+ "type": "string"
7864
+ },
7865
+ "id": {
7866
+ "type": "string"
7867
+ }
7868
+ }
7869
+ }
7870
+ }
7871
+ }
7872
+ }
7873
+ }
7236
7874
  }
7237
7875
  }
7238
- },
7239
- "consentCurrent": {
7240
- "type": "boolean"
7241
- },
7242
- "consentFuture": {
7243
- "type": "boolean"
7244
7876
  }
7245
7877
  }
7246
7878
  },
@@ -7324,8 +7956,102 @@
7324
7956
  }
7325
7957
  },
7326
7958
  {
7327
- "name": "upload_submission_file",
7328
- "description": "Upload Submission File",
7959
+ "name": "create_guest_submission",
7960
+ "description": "Create Submission (Guest)",
7961
+ "inputSchema": {
7962
+ "type": "object",
7963
+ "required": [
7964
+ "name",
7965
+ "email",
7966
+ "tenantId",
7967
+ "formId"
7968
+ ],
7969
+ "properties": {
7970
+ "tenantId": {
7971
+ "type": "string"
7972
+ },
7973
+ "formId": {
7974
+ "type": "string"
7975
+ },
7976
+ "name": {
7977
+ "type": "string"
7978
+ },
7979
+ "email": {
7980
+ "type": "string"
7981
+ },
7982
+ "phone": {
7983
+ "type": "string"
7984
+ },
7985
+ "files": {
7986
+ "type": "array",
7987
+ "items": {
7988
+ "type": "object",
7989
+ "properties": {
7990
+ "fileKey": {
7991
+ "type": "string"
7992
+ },
7993
+ "originalFilename": {
7994
+ "type": "string"
7995
+ }
7996
+ }
7997
+ }
7998
+ },
7999
+ "fields": {
8000
+ "type": "object"
8001
+ },
8002
+ "language": {
8003
+ "type": "string"
8004
+ },
8005
+ "jobId": {
8006
+ "type": "string"
8007
+ },
8008
+ "referral": {
8009
+ "type": "object",
8010
+ "properties": {
8011
+ "referrerName": {
8012
+ "type": "string"
8013
+ },
8014
+ "referrerEmail": {
8015
+ "type": "string"
8016
+ },
8017
+ "relationship": {
8018
+ "type": "string"
8019
+ },
8020
+ "note": {
8021
+ "type": "string"
8022
+ }
8023
+ }
8024
+ },
8025
+ "consentCurrent": {
8026
+ "type": "boolean"
8027
+ },
8028
+ "consentFuture": {
8029
+ "type": "boolean"
8030
+ }
8031
+ }
8032
+ },
8033
+ "_meta": {
8034
+ "method": "POST",
8035
+ "path": "/v1/guest/submissions",
8036
+ "operationId": "createGuestSubmission"
8037
+ }
8038
+ },
8039
+ {
8040
+ "name": "guest_submissions_options",
8041
+ "description": "Guest Submissions Options",
8042
+ "inputSchema": {
8043
+ "type": "object",
8044
+ "properties": {}
8045
+ },
8046
+ "_meta": {
8047
+ "method": "OPTIONS",
8048
+ "path": "/v1/guest/submissions",
8049
+ "operationId": "guestSubmissionsOptions"
8050
+ }
8051
+ },
8052
+ {
8053
+ "name": "upload_guest_submission_file",
8054
+ "description": "Upload Submission File (Guest)",
7329
8055
  "inputSchema": {
7330
8056
  "type": "object",
7331
8057
  "required": [
@@ -7351,21 +8077,21 @@
7351
8077
  },
7352
8078
  "_meta": {
7353
8079
  "method": "POST",
7354
- "path": "/v1/submissions/uploads",
7355
- "operationId": "uploadSubmissionFile"
8080
+ "path": "/v1/guest/submissions/uploads",
8081
+ "operationId": "uploadGuestSubmissionFile"
7356
8082
  }
7357
8083
  },
7358
8084
  {
7359
- "name": "submission_uploads_options",
7360
- "description": "Submission Uploads Options",
8085
+ "name": "guest_submission_uploads_options",
8086
+ "description": "Guest Submission Uploads Options",
7361
8087
  "inputSchema": {
7362
8088
  "type": "object",
7363
8089
  "properties": {}
7364
8090
  },
7365
8091
  "_meta": {
7366
8092
  "method": "OPTIONS",
7367
- "path": "/v1/submissions/uploads",
7368
- "operationId": "submissionUploadsOptions"
8093
+ "path": "/v1/guest/submissions/uploads",
8094
+ "operationId": "guestSubmissionUploadsOptions"
7369
8095
  }
7370
8096
  },
7371
8097
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",