mcp-zenskar 1.1.1 → 1.1.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-zenskar",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Model Context Protocol (MCP) server for Zenskar API - customer management, invoicing, and billing operations",
5
5
  "main": "src/server.js",
6
6
  "bin": {
@@ -4050,9 +4050,9 @@
4050
4050
  },
4051
4051
  {
4052
4052
  "name": "type",
4053
- "description": "Product type (e.g., 'service', 'good').",
4053
+ "description": "Product type. Use 'product' for standard products, 'service' for services.",
4054
4054
  "type": "string",
4055
- "required": false,
4055
+ "required": true,
4056
4056
  "position": "body"
4057
4057
  },
4058
4058
  {
@@ -4807,8 +4807,8 @@
4807
4807
  "description": "Create a new contact associated with a customer.",
4808
4808
  "args": [
4809
4809
  {
4810
- "name": "customer_id",
4811
- "description": "The customer ID to associate this contact with.",
4810
+ "name": "customer",
4811
+ "description": "The customer ID (UUID) to associate this contact with.",
4812
4812
  "type": "string",
4813
4813
  "required": true,
4814
4814
  "position": "body"
@@ -4831,7 +4831,7 @@
4831
4831
  "name": "email",
4832
4832
  "description": "Email address of the contact.",
4833
4833
  "type": "string",
4834
- "required": false,
4834
+ "required": true,
4835
4835
  "position": "body"
4836
4836
  },
4837
4837
  {
@@ -4869,7 +4869,7 @@
4869
4869
  },
4870
4870
  {
4871
4871
  "name": "updateContact",
4872
- "description": "Update an existing contact's details.",
4872
+ "description": "Update an existing contact's details. Requires customer (customer ID) and email even for partial updates.",
4873
4873
  "args": [
4874
4874
  {
4875
4875
  "name": "contactId",
@@ -4878,6 +4878,13 @@
4878
4878
  "required": true,
4879
4879
  "position": "path"
4880
4880
  },
4881
+ {
4882
+ "name": "customer",
4883
+ "description": "The customer ID (UUID) this contact belongs to. Required even for updates.",
4884
+ "type": "string",
4885
+ "required": true,
4886
+ "position": "body"
4887
+ },
4881
4888
  {
4882
4889
  "name": "first_name",
4883
4890
  "description": "Updated first name.",
@@ -4894,9 +4901,9 @@
4894
4901
  },
4895
4902
  {
4896
4903
  "name": "email",
4897
- "description": "Updated email address.",
4904
+ "description": "Email address of the contact. Required even for updates.",
4898
4905
  "type": "string",
4899
- "required": false,
4906
+ "required": true,
4900
4907
  "position": "body"
4901
4908
  },
4902
4909
  {