mcp-zenskar 1.1.1 → 1.1.3
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 +1 -1
- package/src/mcp-config.json +24 -17
package/package.json
CHANGED
package/src/mcp-config.json
CHANGED
|
@@ -2568,7 +2568,7 @@
|
|
|
2568
2568
|
},
|
|
2569
2569
|
{
|
|
2570
2570
|
"name": "updateContract",
|
|
2571
|
-
"description": "Update an existing contract.
|
|
2571
|
+
"description": "Update an existing contract. The API requires name, status, currency, start_date, and customer_id even for partial changes — fetch the contract first with getContractById to get current values, then send all required fields plus any changes. Status: draft, active, paused, expired, disputed. Renewal: renew_with_default_contract, renew_with_existing, do_not_renew.",
|
|
2572
2572
|
"args": [
|
|
2573
2573
|
{
|
|
2574
2574
|
"name": "contractId",
|
|
@@ -4050,9 +4050,9 @@
|
|
|
4050
4050
|
},
|
|
4051
4051
|
{
|
|
4052
4052
|
"name": "type",
|
|
4053
|
-
"description": "Product type
|
|
4053
|
+
"description": "Product type. Use 'product' for standard products, 'service' for services.",
|
|
4054
4054
|
"type": "string",
|
|
4055
|
-
"required":
|
|
4055
|
+
"required": true,
|
|
4056
4056
|
"position": "body"
|
|
4057
4057
|
},
|
|
4058
4058
|
{
|
|
@@ -4210,7 +4210,7 @@
|
|
|
4210
4210
|
},
|
|
4211
4211
|
{
|
|
4212
4212
|
"name": "pricing_data",
|
|
4213
|
-
"description": "Pricing data object
|
|
4213
|
+
"description": "Pricing data object. Must include 'pricing_type' discriminator matching pricing_model. For flat_fee: {pricing_type:'flat_fee', unit_amount:10000} (amount in cents). For per_unit: {pricing_type:'per_unit', unit_amount:500}.",
|
|
4214
4214
|
"type": "object",
|
|
4215
4215
|
"required": false,
|
|
4216
4216
|
"position": "body"
|
|
@@ -4397,14 +4397,14 @@
|
|
|
4397
4397
|
"name": "start_date",
|
|
4398
4398
|
"description": "Start date for the estimate (YYYY-MM-DD).",
|
|
4399
4399
|
"type": "string",
|
|
4400
|
-
"required":
|
|
4400
|
+
"required": true,
|
|
4401
4401
|
"position": "body"
|
|
4402
4402
|
},
|
|
4403
4403
|
{
|
|
4404
4404
|
"name": "end_date",
|
|
4405
4405
|
"description": "End date for the estimate (YYYY-MM-DD).",
|
|
4406
4406
|
"type": "string",
|
|
4407
|
-
"required":
|
|
4407
|
+
"required": true,
|
|
4408
4408
|
"position": "body"
|
|
4409
4409
|
}
|
|
4410
4410
|
],
|
|
@@ -4462,7 +4462,7 @@
|
|
|
4462
4462
|
},
|
|
4463
4463
|
{
|
|
4464
4464
|
"name": "module",
|
|
4465
|
-
"description": "Module/entity type this attribute applies to
|
|
4465
|
+
"description": "Module/entity type this attribute applies to. Allowed values: 'customers', 'contracts', 'invoices', 'payments', 'products', 'plans'.",
|
|
4466
4466
|
"type": "string",
|
|
4467
4467
|
"required": true,
|
|
4468
4468
|
"position": "body"
|
|
@@ -4600,9 +4600,9 @@
|
|
|
4600
4600
|
},
|
|
4601
4601
|
{
|
|
4602
4602
|
"name": "customer_id",
|
|
4603
|
-
"description": "The customer ID this quote is for.",
|
|
4603
|
+
"description": "The customer ID this quote is for (required for non-amendment quotes).",
|
|
4604
4604
|
"type": "string",
|
|
4605
|
-
"required":
|
|
4605
|
+
"required": true,
|
|
4606
4606
|
"position": "body"
|
|
4607
4607
|
},
|
|
4608
4608
|
{
|
|
@@ -4616,14 +4616,14 @@
|
|
|
4616
4616
|
"name": "start_date",
|
|
4617
4617
|
"description": "Start date for the quote (YYYY-MM-DD).",
|
|
4618
4618
|
"type": "string",
|
|
4619
|
-
"required":
|
|
4619
|
+
"required": true,
|
|
4620
4620
|
"position": "body"
|
|
4621
4621
|
},
|
|
4622
4622
|
{
|
|
4623
4623
|
"name": "end_date",
|
|
4624
4624
|
"description": "End date for the quote (YYYY-MM-DD).",
|
|
4625
4625
|
"type": "string",
|
|
4626
|
-
"required":
|
|
4626
|
+
"required": true,
|
|
4627
4627
|
"position": "body"
|
|
4628
4628
|
},
|
|
4629
4629
|
{
|
|
@@ -4807,8 +4807,8 @@
|
|
|
4807
4807
|
"description": "Create a new contact associated with a customer.",
|
|
4808
4808
|
"args": [
|
|
4809
4809
|
{
|
|
4810
|
-
"name": "
|
|
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":
|
|
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": "
|
|
4904
|
+
"description": "Email address of the contact. Required even for updates.",
|
|
4898
4905
|
"type": "string",
|
|
4899
|
-
"required":
|
|
4906
|
+
"required": true,
|
|
4900
4907
|
"position": "body"
|
|
4901
4908
|
},
|
|
4902
4909
|
{
|