@smartytalent/mcp-tools 0.1.5 → 0.1.6

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 +329 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7572,6 +7572,335 @@
7572
7572
  "operationId": "callOptions"
7573
7573
  }
7574
7574
  },
7575
+ {
7576
+ "name": "list_chats",
7577
+ "description": "List Chats",
7578
+ "inputSchema": {
7579
+ "type": "object",
7580
+ "properties": {
7581
+ "filterStatus": {
7582
+ "type": "string",
7583
+ "description": "Returns chats with the current status (active, archived). If not provided, the default value will be set to 'active'.",
7584
+ "enum": [
7585
+ "active",
7586
+ "archived"
7587
+ ]
7588
+ },
7589
+ "filterCreatedFrom": {
7590
+ "type": "string",
7591
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
7592
+ },
7593
+ "filterCreatedTo": {
7594
+ "type": "string",
7595
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
7596
+ },
7597
+ "filterModifiedFrom": {
7598
+ "type": "string",
7599
+ "description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
7600
+ },
7601
+ "filterModifiedTo": {
7602
+ "type": "string",
7603
+ "description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
7604
+ },
7605
+ "pageSize": {
7606
+ "type": "integer",
7607
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
7608
+ },
7609
+ "pageNumber": {
7610
+ "type": "integer",
7611
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
7612
+ },
7613
+ "pageAfter": {
7614
+ "type": "string",
7615
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
7616
+ },
7617
+ "pageBefore": {
7618
+ "type": "string",
7619
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
7620
+ }
7621
+ }
7622
+ },
7623
+ "_meta": {
7624
+ "method": "GET",
7625
+ "path": "/v1/chats",
7626
+ "operationId": "listChats"
7627
+ }
7628
+ },
7629
+ {
7630
+ "name": "create_chat",
7631
+ "description": "Create Chat",
7632
+ "inputSchema": {
7633
+ "title": "CreateChatRequestBody",
7634
+ "type": "object",
7635
+ "required": [
7636
+ "data"
7637
+ ],
7638
+ "properties": {
7639
+ "data": {
7640
+ "title": "CreateChatRequestBodyData",
7641
+ "type": "object",
7642
+ "required": [
7643
+ "type",
7644
+ "attributes"
7645
+ ],
7646
+ "properties": {
7647
+ "type": {
7648
+ "type": "string",
7649
+ "enum": [
7650
+ "chats"
7651
+ ]
7652
+ },
7653
+ "attributes": {
7654
+ "title": "ChatAttributesSchema",
7655
+ "type": "object",
7656
+ "properties": {
7657
+ "direction": {
7658
+ "type": "string",
7659
+ "enum": [
7660
+ "inbound",
7661
+ "outbound"
7662
+ ],
7663
+ "description": "Message direction"
7664
+ },
7665
+ "senderNumber": {
7666
+ "type": "string",
7667
+ "description": "Sender phone number in E.164 format"
7668
+ },
7669
+ "recipientNumber": {
7670
+ "type": "string",
7671
+ "description": "Recipient phone number in E.164 format"
7672
+ },
7673
+ "messageSid": {
7674
+ "type": "string",
7675
+ "description": "Twilio message SID"
7676
+ },
7677
+ "body": {
7678
+ "type": "string",
7679
+ "description": "SMS message body"
7680
+ },
7681
+ "aiResponse": {
7682
+ "type": "string",
7683
+ "description": "AI-generated response text"
7684
+ },
7685
+ "shortCode": {
7686
+ "type": "string",
7687
+ "description": "Unique short identifier"
7688
+ },
7689
+ "status": {
7690
+ "type": "string",
7691
+ "enum": [
7692
+ "active",
7693
+ "pending",
7694
+ "archived",
7695
+ "failed"
7696
+ ],
7697
+ "description": "Current status"
7698
+ },
7699
+ "timestamps": {
7700
+ "title": "ResourceTimestampsSchema",
7701
+ "type": "object",
7702
+ "properties": {
7703
+ "created": {
7704
+ "type": "string",
7705
+ "format": "date-time"
7706
+ },
7707
+ "modified": {
7708
+ "type": "string",
7709
+ "format": "date-time"
7710
+ }
7711
+ }
7712
+ }
7713
+ }
7714
+ },
7715
+ "relationships": {
7716
+ "title": "ChatRelationshipsSchema",
7717
+ "type": "object",
7718
+ "properties": {
7719
+ "translations": {
7720
+ "title": "ChatRelationshipsTranslationsSchema",
7721
+ "type": "object",
7722
+ "properties": {
7723
+ "data": {
7724
+ "type": "array",
7725
+ "items": {
7726
+ "title": "ChatRelationshipsTranslationsDataSchema",
7727
+ "type": "object",
7728
+ "properties": {
7729
+ "type": {
7730
+ "type": "string"
7731
+ },
7732
+ "id": {
7733
+ "type": "string"
7734
+ }
7735
+ }
7736
+ }
7737
+ }
7738
+ }
7739
+ }
7740
+ }
7741
+ }
7742
+ }
7743
+ }
7744
+ }
7745
+ },
7746
+ "_meta": {
7747
+ "method": "POST",
7748
+ "path": "/v1/chats",
7749
+ "operationId": "createChat"
7750
+ }
7751
+ },
7752
+ {
7753
+ "name": "chats_options",
7754
+ "description": "Chats Options",
7755
+ "inputSchema": {
7756
+ "type": "object",
7757
+ "properties": {}
7758
+ },
7759
+ "_meta": {
7760
+ "method": "OPTIONS",
7761
+ "path": "/v1/chats",
7762
+ "operationId": "chatsOptions"
7763
+ }
7764
+ },
7765
+ {
7766
+ "name": "show_chat",
7767
+ "description": "Show Chat",
7768
+ "inputSchema": {
7769
+ "type": "object",
7770
+ "properties": {}
7771
+ },
7772
+ "_meta": {
7773
+ "method": "GET",
7774
+ "path": "/v1/chats/{chatId}",
7775
+ "operationId": "showChat"
7776
+ }
7777
+ },
7778
+ {
7779
+ "name": "update_chat",
7780
+ "description": "Update Chat",
7781
+ "inputSchema": {
7782
+ "title": "UpdateChatRequestBody",
7783
+ "type": "object",
7784
+ "required": [
7785
+ "data"
7786
+ ],
7787
+ "properties": {
7788
+ "data": {
7789
+ "title": "UpdateChatRequestBodyData",
7790
+ "type": "object",
7791
+ "required": [
7792
+ "type",
7793
+ "id",
7794
+ "attributes"
7795
+ ],
7796
+ "properties": {
7797
+ "type": {
7798
+ "type": "string",
7799
+ "enum": [
7800
+ "chats"
7801
+ ]
7802
+ },
7803
+ "id": {
7804
+ "type": "string"
7805
+ },
7806
+ "attributes": {
7807
+ "title": "ChatAttributesSchema",
7808
+ "type": "object",
7809
+ "properties": {
7810
+ "direction": {
7811
+ "type": "string",
7812
+ "enum": [
7813
+ "inbound",
7814
+ "outbound"
7815
+ ],
7816
+ "description": "Message direction"
7817
+ },
7818
+ "senderNumber": {
7819
+ "type": "string",
7820
+ "description": "Sender phone number in E.164 format"
7821
+ },
7822
+ "recipientNumber": {
7823
+ "type": "string",
7824
+ "description": "Recipient phone number in E.164 format"
7825
+ },
7826
+ "messageSid": {
7827
+ "type": "string",
7828
+ "description": "Twilio message SID"
7829
+ },
7830
+ "body": {
7831
+ "type": "string",
7832
+ "description": "SMS message body"
7833
+ },
7834
+ "aiResponse": {
7835
+ "type": "string",
7836
+ "description": "AI-generated response text"
7837
+ },
7838
+ "shortCode": {
7839
+ "type": "string",
7840
+ "description": "Unique short identifier"
7841
+ },
7842
+ "status": {
7843
+ "type": "string",
7844
+ "enum": [
7845
+ "active",
7846
+ "pending",
7847
+ "archived",
7848
+ "failed"
7849
+ ],
7850
+ "description": "Current status"
7851
+ },
7852
+ "timestamps": {
7853
+ "title": "ResourceTimestampsSchema",
7854
+ "type": "object",
7855
+ "properties": {
7856
+ "created": {
7857
+ "type": "string",
7858
+ "format": "date-time"
7859
+ },
7860
+ "modified": {
7861
+ "type": "string",
7862
+ "format": "date-time"
7863
+ }
7864
+ }
7865
+ }
7866
+ }
7867
+ }
7868
+ }
7869
+ }
7870
+ }
7871
+ },
7872
+ "_meta": {
7873
+ "method": "PATCH",
7874
+ "path": "/v1/chats/{chatId}",
7875
+ "operationId": "updateChat"
7876
+ }
7877
+ },
7878
+ {
7879
+ "name": "delete_chat",
7880
+ "description": "Delete Chat",
7881
+ "inputSchema": {
7882
+ "type": "object",
7883
+ "properties": {}
7884
+ },
7885
+ "_meta": {
7886
+ "method": "DELETE",
7887
+ "path": "/v1/chats/{chatId}",
7888
+ "operationId": "deleteChat"
7889
+ }
7890
+ },
7891
+ {
7892
+ "name": "chat_options",
7893
+ "description": "Chat Options",
7894
+ "inputSchema": {
7895
+ "type": "object",
7896
+ "properties": {}
7897
+ },
7898
+ "_meta": {
7899
+ "method": "OPTIONS",
7900
+ "path": "/v1/chats/{chatId}",
7901
+ "operationId": "chatOptions"
7902
+ }
7903
+ },
7575
7904
  {
7576
7905
  "name": "list_personas",
7577
7906
  "description": "List Personas",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",