@getcheddar/cheddar-mcp 1.0.4 → 2.0.0

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.
@@ -1,7 +1,7 @@
1
1
  import { Tool } from "@modelcontextprotocol/sdk/types.js";
2
- import { CheddarApiClient } from "../lib/cheddar-client.js";
2
+ import { LegacyCheddarClient } from "../lib/legacy-client.js";
3
3
  export declare const customerTools: Tool[];
4
- export declare function handleCustomerTool(client: CheddarApiClient, name: string, args: Record<string, unknown> | undefined): Promise<{
4
+ export declare function handleCustomerTool(client: LegacyCheddarClient, name: string, args: Record<string, unknown> | undefined): Promise<{
5
5
  content: Array<{
6
6
  type: string;
7
7
  text: string;
@@ -1 +1 @@
1
- {"version":3,"file":"customers.d.ts","sourceRoot":"","sources":["../../src/tools/customers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAE5D,eAAO,MAAM,aAAa,EAAE,IAAI,EA2G/B,CAAC;AAEF,wBAAsB,kBAAkB,CACtC,MAAM,EAAE,gBAAgB,EACxB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,GACxC,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC,CA2C7D"}
1
+ {"version":3,"file":"customers.d.ts","sourceRoot":"","sources":["../../src/tools/customers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,eAAO,MAAM,aAAa,EAAE,IAAI,EAkG/B,CAAC;AAQF,wBAAsB,kBAAkB,CACtC,MAAM,EAAE,mBAAmB,EAC3B,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,GACxC,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC,CA6C7D"}
@@ -1,59 +1,67 @@
1
1
  export const customerTools = [
2
2
  {
3
3
  name: "cheddar_customer_get",
4
- description: "Retrieve a customer by their ID or code from Cheddar",
4
+ description: "Fetch one customer via the legacy Cheddar API (HTTP Basic). Use customer code or CG customer id.",
5
5
  inputSchema: {
6
6
  type: "object",
7
7
  properties: {
8
- id: {
8
+ lookup: {
9
9
  type: "string",
10
- description: "The customer ID (UUID) or unique customer code",
10
+ enum: ["code", "id"],
11
+ description: "Whether `value` is the customer code or internal id",
12
+ },
13
+ value: {
14
+ type: "string",
15
+ description: "Customer code or id",
11
16
  },
12
17
  },
13
- required: ["id"],
18
+ required: ["lookup", "value"],
14
19
  },
15
20
  },
16
21
  {
17
- name: "cheddar_customer_create",
18
- description: "Create a new customer in Cheddar",
22
+ name: "cheddar_customers_search",
23
+ description: "Search customers (legacy API). Supports text search and common filters; see GetCheddar docs for query parameters.",
19
24
  inputSchema: {
20
25
  type: "object",
21
26
  properties: {
22
- code: {
27
+ search: { type: "string", description: "Free-text search" },
28
+ subscriptionStatus: {
23
29
  type: "string",
24
- description: "Unique customer code/identifier (required)",
30
+ enum: ["activeOnly", "canceledOnly"],
25
31
  },
26
- firstName: {
32
+ orderBy: {
27
33
  type: "string",
28
- description: "Customer's first name",
34
+ enum: ["name", "company", "plan", "billingDatetime", "createdDatetime"],
29
35
  },
30
- lastName: {
31
- type: "string",
32
- description: "Customer's last name",
33
- },
34
- email: {
35
- type: "string",
36
- description: "Customer's email address",
36
+ orderByDirection: { type: "string", enum: ["asc", "desc"] },
37
+ createdAfterDate: { type: "string", description: "YYYY-MM-DD" },
38
+ createdBeforeDate: { type: "string", description: "YYYY-MM-DD" },
39
+ planCode: {
40
+ type: "array",
41
+ items: { type: "string" },
42
+ description: "Filter by one or more plan codes",
37
43
  },
38
- company: {
39
- type: "string",
40
- description: "Customer's company name",
41
- },
42
- notes: {
43
- type: "string",
44
- description: "Internal notes about the customer",
45
- },
46
- taxRate: {
47
- type: "string",
48
- description: "Tax rate to apply to this customer (e.g., '0.08' for 8%)",
49
- },
50
- isTaxExempt: {
51
- type: "boolean",
52
- description: "Whether the customer is tax exempt",
53
- },
54
- taxNumber: {
55
- type: "string",
56
- description: "Tax/VAT number for the customer",
44
+ },
45
+ },
46
+ },
47
+ {
48
+ name: "cheddar_customer_create",
49
+ description: "Create a customer (legacy POST). Pass top-level fields and optional `subscription` per [GetCheddar docs](https://docs.getcheddar.com/). Prefer hosted checkout or `gatewayToken` flows for card data—do not send raw PAN/CVV through this tool.",
50
+ inputSchema: {
51
+ type: "object",
52
+ properties: {
53
+ code: { type: "string", description: "Required unique customer code" },
54
+ firstName: { type: "string" },
55
+ lastName: { type: "string" },
56
+ email: { type: "string" },
57
+ company: { type: "string" },
58
+ notes: { type: "string" },
59
+ taxRate: { type: "string" },
60
+ isTaxExempt: { type: "boolean" },
61
+ taxNumber: { type: "string" },
62
+ subscription: {
63
+ type: "object",
64
+ description: "Nested subscription fields allowed by the legacy API (e.g. planCode). Avoid raw card numbers; use processor tokenization or hosted collection.",
57
65
  },
58
66
  },
59
67
  required: ["code"],
@@ -61,90 +69,82 @@ export const customerTools = [
61
69
  },
62
70
  {
63
71
  name: "cheddar_customer_update",
64
- description: "Update an existing customer's information in Cheddar",
72
+ description: "Update customer + subscription (legacy POST /customers/edit). Provide customer `code` and fields to change. Prefer token/hosted flows over raw card data.",
65
73
  inputSchema: {
66
74
  type: "object",
67
75
  properties: {
68
- id: {
69
- type: "string",
70
- description: "The customer ID or code to update",
71
- },
72
- firstName: {
73
- type: "string",
74
- description: "Customer's first name",
75
- },
76
- lastName: {
77
- type: "string",
78
- description: "Customer's last name",
79
- },
80
- email: {
81
- type: "string",
82
- description: "Customer's email address",
83
- },
84
- company: {
85
- type: "string",
86
- description: "Customer's company name",
87
- },
88
- notes: {
89
- type: "string",
90
- description: "Internal notes about the customer",
91
- },
92
- taxRate: {
93
- type: "string",
94
- description: "Tax rate to apply to this customer",
95
- },
96
- isTaxExempt: {
97
- type: "boolean",
98
- description: "Whether the customer is tax exempt",
99
- },
100
- taxNumber: {
101
- type: "string",
102
- description: "Tax/VAT number for the customer",
76
+ code: { type: "string", description: "Customer code to edit" },
77
+ firstName: { type: "string" },
78
+ lastName: { type: "string" },
79
+ email: { type: "string" },
80
+ company: { type: "string" },
81
+ notes: { type: "string" },
82
+ taxRate: { type: "string" },
83
+ isTaxExempt: { type: "boolean" },
84
+ taxNumber: { type: "string" },
85
+ subscription: {
86
+ type: "object",
87
+ description: "Subscription fields per legacy API docs; avoid sending full card numbers through the MCP.",
103
88
  },
104
89
  },
105
- required: ["id"],
90
+ required: ["code"],
106
91
  },
107
92
  },
108
93
  ];
94
+ function jsonResult(data) {
95
+ return {
96
+ content: [{ type: "text", text: JSON.stringify(data, null, 2) }],
97
+ };
98
+ }
109
99
  export async function handleCustomerTool(client, name, args) {
100
+ const a = args || {};
110
101
  switch (name) {
111
102
  case "cheddar_customer_get": {
112
- const { id } = args;
113
- const customer = await client.getCustomer(id);
114
- return {
115
- content: [
116
- {
117
- type: "text",
118
- text: JSON.stringify(customer, null, 2),
119
- },
120
- ],
121
- };
103
+ const { lookup, value } = a;
104
+ const data = await client.getCustomer(lookup, value);
105
+ return jsonResult(data);
106
+ }
107
+ case "cheddar_customers_search": {
108
+ const params = {};
109
+ if (a.search)
110
+ params.search = String(a.search);
111
+ if (a.subscriptionStatus)
112
+ params.subscriptionStatus = String(a.subscriptionStatus);
113
+ if (a.orderBy)
114
+ params.orderBy = String(a.orderBy);
115
+ if (a.orderByDirection)
116
+ params.orderByDirection = String(a.orderByDirection);
117
+ if (a.createdAfterDate)
118
+ params.createdAfterDate = String(a.createdAfterDate);
119
+ if (a.createdBeforeDate)
120
+ params.createdBeforeDate = String(a.createdBeforeDate);
121
+ if (Array.isArray(a.planCode)) {
122
+ a.planCode.forEach((c, i) => {
123
+ params[`planCode[${i}]`] = c;
124
+ });
125
+ }
126
+ const data = await client.searchCustomers(params);
127
+ return jsonResult(data);
122
128
  }
123
129
  case "cheddar_customer_create": {
124
- const customer = await client.createCustomer(args);
125
- return {
126
- content: [
127
- {
128
- type: "text",
129
- text: `Customer created successfully:\n${JSON.stringify(customer, null, 2)}`,
130
- },
131
- ],
132
- };
130
+ const { code, subscription, ...rest } = a;
131
+ const fields = { code, ...rest };
132
+ if (subscription)
133
+ fields.subscription = subscription;
134
+ const data = await client.createCustomer(fields);
135
+ return jsonResult(data);
133
136
  }
134
137
  case "cheddar_customer_update": {
135
- const { id, ...updates } = args;
136
- const customer = await client.updateCustomer(id, updates);
137
- return {
138
- content: [
139
- {
140
- type: "text",
141
- text: `Customer updated successfully:\n${JSON.stringify(customer, null, 2)}`,
142
- },
143
- ],
144
- };
138
+ const { code, ...updates } = a;
139
+ const { subscription, ...rest } = updates;
140
+ const fields = { ...rest };
141
+ if (subscription)
142
+ fields.subscription = subscription;
143
+ const data = await client.updateCustomer(code, fields);
144
+ return jsonResult(data);
145
145
  }
146
146
  default:
147
- throw new Error(`Unknown customer tool: ${name}`);
147
+ throw new Error(`Unknown tool: ${name}`);
148
148
  }
149
149
  }
150
150
  //# sourceMappingURL=customers.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"customers.js","sourceRoot":"","sources":["../../src/tools/customers.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"customers.js","sourceRoot":"","sources":["../../src/tools/customers.ts"],"names":[],"mappings":"AAGA,MAAM,CAAC,MAAM,aAAa,GAAW;IACnC;QACE,IAAI,EAAE,sBAAsB;QAC5B,WAAW,EACT,kGAAkG;QACpG,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,MAAM,EAAE;oBACN,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC;oBACpB,WAAW,EAAE,qDAAqD;iBACnE;gBACD,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,qBAAqB;iBACnC;aACF;YACD,QAAQ,EAAE,CAAC,QAAQ,EAAE,OAAO,CAAC;SAC9B;KACF;IACD;QACE,IAAI,EAAE,0BAA0B;QAChC,WAAW,EACT,mHAAmH;QACrH,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,MAAM,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE;gBAC3D,kBAAkB,EAAE;oBAClB,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,CAAC,YAAY,EAAE,cAAc,CAAC;iBACrC;gBACD,OAAO,EAAE;oBACP,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,CAAC,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,iBAAiB,EAAE,iBAAiB,CAAC;iBACxE;gBACD,gBAAgB,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC,EAAE;gBAC3D,gBAAgB,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,YAAY,EAAE;gBAC/D,iBAAiB,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,YAAY,EAAE;gBAChE,QAAQ,EAAE;oBACR,IAAI,EAAE,OAAO;oBACb,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;oBACzB,WAAW,EAAE,kCAAkC;iBAChD;aACF;SACF;KACF;IACD;QACE,IAAI,EAAE,yBAAyB;QAC/B,WAAW,EACT,iPAAiP;QACnP,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,+BAA+B,EAAE;gBACtE,SAAS,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC7B,QAAQ,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC5B,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBACzB,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC3B,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBACzB,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC3B,WAAW,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;gBAChC,SAAS,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC7B,YAAY,EAAE;oBACZ,IAAI,EAAE,QAAQ;oBACd,WAAW,EACT,gJAAgJ;iBACnJ;aACF;YACD,QAAQ,EAAE,CAAC,MAAM,CAAC;SACnB;KACF;IACD;QACE,IAAI,EAAE,yBAAyB;QAC/B,WAAW,EACT,2JAA2J;QAC7J,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,uBAAuB,EAAE;gBAC9D,SAAS,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC7B,QAAQ,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC5B,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBACzB,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC3B,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBACzB,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC3B,WAAW,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;gBAChC,SAAS,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC7B,YAAY,EAAE;oBACZ,IAAI,EAAE,QAAQ;oBACd,WAAW,EACT,2FAA2F;iBAC9F;aACF;YACD,QAAQ,EAAE,CAAC,MAAM,CAAC;SACnB;KACF;CACF,CAAC;AAEF,SAAS,UAAU,CAAC,IAAa;IAC/B,OAAO;QACL,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,MAAe,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC;KAC1E,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,kBAAkB,CACtC,MAA2B,EAC3B,IAAY,EACZ,IAAyC;IAEzC,MAAM,CAAC,GAAG,IAAI,IAAI,EAAE,CAAC;IACrB,QAAQ,IAAI,EAAE,CAAC;QACb,KAAK,sBAAsB,CAAC,CAAC,CAAC;YAC5B,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,CAA6C,CAAC;YACxE,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;YACrD,OAAO,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1B,CAAC;QACD,KAAK,0BAA0B,CAAC,CAAC,CAAC;YAChC,MAAM,MAAM,GAA2B,EAAE,CAAC;YAC1C,IAAI,CAAC,CAAC,MAAM;gBAAE,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;YAC/C,IAAI,CAAC,CAAC,kBAAkB;gBAAE,MAAM,CAAC,kBAAkB,GAAG,MAAM,CAAC,CAAC,CAAC,kBAAkB,CAAC,CAAC;YACnF,IAAI,CAAC,CAAC,OAAO;gBAAE,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;YAClD,IAAI,CAAC,CAAC,gBAAgB;gBAAE,MAAM,CAAC,gBAAgB,GAAG,MAAM,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC;YAC7E,IAAI,CAAC,CAAC,gBAAgB;gBAAE,MAAM,CAAC,gBAAgB,GAAG,MAAM,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC;YAC7E,IAAI,CAAC,CAAC,iBAAiB;gBAAE,MAAM,CAAC,iBAAiB,GAAG,MAAM,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC;YAChF,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC;gBAC7B,CAAC,CAAC,QAAqB,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;oBACxC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;gBAC/B,CAAC,CAAC,CAAC;YACL,CAAC;YACD,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;YAClD,OAAO,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1B,CAAC;QACD,KAAK,yBAAyB,CAAC,CAAC,CAAC;YAC/B,MAAM,EAAE,IAAI,EAAE,YAAY,EAAE,GAAG,IAAI,EAAE,GAAG,CAGvC,CAAC;YACF,MAAM,MAAM,GAA4B,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,CAAC;YAC1D,IAAI,YAAY;gBAAE,MAAM,CAAC,YAAY,GAAG,YAAY,CAAC;YACrD,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;YACjD,OAAO,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1B,CAAC;QACD,KAAK,yBAAyB,CAAC,CAAC,CAAC;YAC/B,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,GAAG,CAA+C,CAAC;YAC7E,MAAM,EAAE,YAAY,EAAE,GAAG,IAAI,EAAE,GAAG,OAAO,CAAC;YAC1C,MAAM,MAAM,GAA4B,EAAE,GAAG,IAAI,EAAE,CAAC;YACpD,IAAI,YAAY;gBAAE,MAAM,CAAC,YAAY,GAAG,YAAY,CAAC;YACrD,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;YACvD,OAAO,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1B,CAAC;QACD;YACE,MAAM,IAAI,KAAK,CAAC,iBAAiB,IAAI,EAAE,CAAC,CAAC;IAC7C,CAAC;AACH,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { Tool } from "@modelcontextprotocol/sdk/types.js";
2
+ import { LegacyCheddarClient } from "../lib/legacy-client.js";
3
+ export declare const planTools: Tool[];
4
+ export declare function handlePlanTool(client: LegacyCheddarClient, name: string, args: Record<string, unknown> | undefined): Promise<{
5
+ content: Array<{
6
+ type: string;
7
+ text: string;
8
+ }>;
9
+ }>;
10
+ //# sourceMappingURL=plans.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plans.d.ts","sourceRoot":"","sources":["../../src/tools/plans.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,eAAO,MAAM,SAAS,EAAE,IAAI,EAe3B,CAAC;AAEF,wBAAsB,cAAc,CAClC,MAAM,EAAE,mBAAmB,EAC3B,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,GACxC,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC,CAS7D"}
@@ -0,0 +1,26 @@
1
+ export const planTools = [
2
+ {
3
+ name: "cheddar_plans_get",
4
+ description: "List all pricing plans for the product, or fetch one plan by code (legacy /xml/plans/get).",
5
+ inputSchema: {
6
+ type: "object",
7
+ properties: {
8
+ planCode: {
9
+ type: "string",
10
+ description: "If set, return a single plan with this code; otherwise return all plans",
11
+ },
12
+ },
13
+ },
14
+ },
15
+ ];
16
+ export async function handlePlanTool(client, name, args) {
17
+ if (name !== "cheddar_plans_get") {
18
+ throw new Error(`Unknown tool: ${name}`);
19
+ }
20
+ const planCode = args?.planCode != null ? String(args.planCode) : undefined;
21
+ const data = await client.getPlans(planCode);
22
+ return {
23
+ content: [{ type: "text", text: JSON.stringify(data, null, 2) }],
24
+ };
25
+ }
26
+ //# sourceMappingURL=plans.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plans.js","sourceRoot":"","sources":["../../src/tools/plans.ts"],"names":[],"mappings":"AAGA,MAAM,CAAC,MAAM,SAAS,GAAW;IAC/B;QACE,IAAI,EAAE,mBAAmB;QACzB,WAAW,EACT,4FAA4F;QAC9F,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,QAAQ,EAAE;oBACR,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,yEAAyE;iBACvF;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,KAAK,UAAU,cAAc,CAClC,MAA2B,EAC3B,IAAY,EACZ,IAAyC;IAEzC,IAAI,IAAI,KAAK,mBAAmB,EAAE,CAAC;QACjC,MAAM,IAAI,KAAK,CAAC,iBAAiB,IAAI,EAAE,CAAC,CAAC;IAC3C,CAAC;IACD,MAAM,QAAQ,GAAG,IAAI,EAAE,QAAQ,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAC5E,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;IAC7C,OAAO;QACL,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC;KACjE,CAAC;AACJ,CAAC"}
package/package.json CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "@getcheddar/cheddar-mcp",
3
- "version": "1.0.4",
3
+ "version": "2.0.0",
4
4
  "description": "Model Context Protocol server for Cheddar Payment Platform integration",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "type": "module",
9
9
  "bin": {
10
- "cheddar-mcp": "./dist/index.js"
10
+ "cheddar-mcp": "bin/cheddar-mcp.mjs"
11
11
  },
12
12
  "main": "./dist/index.js",
13
13
  "types": "./dist/index.d.ts",
14
14
  "files": [
15
+ "bin/cheddar-mcp.mjs",
15
16
  "dist/**/*",
16
17
  "README.md",
17
18
  "LICENSE"
@@ -39,15 +40,15 @@
39
40
  "license": "MIT",
40
41
  "dependencies": {
41
42
  "@modelcontextprotocol/sdk": "^1.0.0",
42
- "zod": "^3.22.4",
43
- "dotenv": "^16.3.1"
43
+ "dotenv": "^16.3.1",
44
+ "fast-xml-parser": "^4.5.0"
44
45
  },
45
46
  "devDependencies": {
46
47
  "@types/node": "^20.10.0",
47
- "typescript": "^5.3.0",
48
- "vitest": "^1.0.0",
49
48
  "eslint": "^8.55.0",
50
- "prettier": "^3.1.0"
49
+ "prettier": "^3.1.0",
50
+ "typescript": "^5.3.0",
51
+ "vitest": "^1.0.0"
51
52
  },
52
53
  "engines": {
53
54
  "node": ">=18.0.0"
@@ -1,111 +0,0 @@
1
- export interface CheddarConfig {
2
- apiUrl: string;
3
- clientId?: string;
4
- clientSecret?: string;
5
- accessToken?: string;
6
- }
7
- export interface Customer {
8
- id: string;
9
- code: string;
10
- firstName?: string;
11
- lastName?: string;
12
- email?: string;
13
- company?: string;
14
- notes?: string;
15
- taxRate?: string;
16
- isTaxExempt?: boolean;
17
- taxNumber?: string;
18
- createdDatetime: string;
19
- }
20
- export interface PaymentMethod {
21
- id: string;
22
- type: "CreditCard" | "PayPalPreapproval" | "PayPalBillingAgreement" | "External";
23
- gatewayAccountId: string;
24
- isPrimary: boolean;
25
- isActive: boolean;
26
- createdDatetime: string;
27
- card?: {
28
- lastFour: string;
29
- cardType?: string;
30
- expirationDate?: string;
31
- };
32
- paypal?: {
33
- email?: string;
34
- };
35
- }
36
- export interface PaymentMethodToken {
37
- token: string;
38
- expiresAt: string;
39
- }
40
- export interface Subscription {
41
- id: string;
42
- customerId: string;
43
- planId: string;
44
- paymentMethodId?: string;
45
- status: "active" | "canceled" | "expired" | "pending";
46
- startDate?: string;
47
- endDate?: string;
48
- nextBillDate?: string;
49
- createdDatetime: string;
50
- }
51
- export interface Plan {
52
- id: string;
53
- code: string;
54
- name?: string;
55
- description?: string;
56
- isActive: boolean;
57
- setupChargeAmount?: string;
58
- recurringChargeAmount?: string;
59
- trialDays?: number;
60
- billingFrequency?: string;
61
- billingFrequencyQuantity?: number;
62
- billingFrequencyUnit?: string;
63
- createdDatetime: string;
64
- }
65
- export interface Product {
66
- id: string;
67
- code: string;
68
- name?: string;
69
- country?: string;
70
- currency?: string;
71
- createdDatetime: string;
72
- }
73
- export interface GatewayAccount {
74
- id: string;
75
- gateway: string;
76
- isActive: boolean;
77
- isPrimary: boolean;
78
- createdDatetime: string;
79
- }
80
- export declare class CheddarApiClient {
81
- private config;
82
- private baseUrl;
83
- constructor(config: CheddarConfig);
84
- private getAuthHeaders;
85
- private request;
86
- getCustomer(id: string): Promise<Customer>;
87
- createCustomer(customerData: Partial<Customer>): Promise<Customer>;
88
- updateCustomer(id: string, updates: Partial<Customer>): Promise<Customer>;
89
- getPaymentMethod(id: string): Promise<PaymentMethod>;
90
- getPaymentMethodCustomer(id: string): Promise<Customer>;
91
- getPaymentMethodGatewayAccount(id: string): Promise<GatewayAccount>;
92
- createPaymentMethodToken(paymentData: {
93
- cardNumber: string;
94
- expirationDate: string;
95
- cvv: string;
96
- cardholderName?: string;
97
- }): Promise<PaymentMethodToken>;
98
- addPaymentMethodToCustomer(customerId: string, token: string): Promise<PaymentMethod>;
99
- getSubscription(id: string): Promise<Subscription>;
100
- getSubscriptionCustomer(id: string): Promise<Customer>;
101
- getSubscriptionPlan(id: string): Promise<Plan>;
102
- getSubscriptionPaymentMethod(id: string): Promise<PaymentMethod>;
103
- deleteSubscriptionPromotion(customerId: string): Promise<void>;
104
- getProduct(): Promise<Product>;
105
- getPlan(id: string): Promise<Plan>;
106
- getGatewayAccount(id: string): Promise<GatewayAccount>;
107
- ping(): Promise<{
108
- ack: number;
109
- }>;
110
- }
111
- //# sourceMappingURL=cheddar-client.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cheddar-client.d.ts","sourceRoot":"","sources":["../../src/lib/cheddar-client.ts"],"names":[],"mappings":"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"}
@@ -1,101 +0,0 @@
1
- // Cheddar API Client - wraps the REST API for the MCP server
2
- export class CheddarApiClient {
3
- config;
4
- baseUrl;
5
- constructor(config) {
6
- this.config = config;
7
- this.baseUrl = config.apiUrl.replace(/\/$/, "");
8
- }
9
- async getAuthHeaders() {
10
- // If access token is provided directly, use it
11
- if (this.config.accessToken) {
12
- return {
13
- Authorization: `Bearer ${this.config.accessToken}`,
14
- "Content-Type": "application/json",
15
- };
16
- }
17
- // Otherwise, implement OAuth2 token fetch
18
- // Note: In production, you'd want to cache and refresh tokens
19
- throw new Error("OAuth2 token refresh not yet implemented. Please provide CHEDDAR_ACCESS_TOKEN.");
20
- }
21
- async request(method, path, body) {
22
- const headers = await this.getAuthHeaders();
23
- const url = `${this.baseUrl}${path}`;
24
- const response = await fetch(url, {
25
- method,
26
- headers,
27
- body: body ? JSON.stringify(body) : undefined,
28
- });
29
- if (!response.ok) {
30
- const errorText = await response.text();
31
- throw new Error(`Cheddar API error (${response.status}): ${errorText}`);
32
- }
33
- return response.json();
34
- }
35
- // ==================== Customer Operations ====================
36
- async getCustomer(id) {
37
- return this.request("GET", `/customer/${encodeURIComponent(id)}`);
38
- }
39
- async createCustomer(customerData) {
40
- return this.request("POST", "/customer", customerData);
41
- }
42
- async updateCustomer(id, updates) {
43
- return this.request("PATCH", `/customer/${encodeURIComponent(id)}`, updates);
44
- }
45
- // ==================== Payment Method Operations ====================
46
- async getPaymentMethod(id) {
47
- return this.request("GET", `/payment-method/${encodeURIComponent(id)}`);
48
- }
49
- async getPaymentMethodCustomer(id) {
50
- return this.request("GET", `/payment-method/${encodeURIComponent(id)}/customer`);
51
- }
52
- async getPaymentMethodGatewayAccount(id) {
53
- return this.request("GET", `/payment-method/${encodeURIComponent(id)}/gateway-account`);
54
- }
55
- async createPaymentMethodToken(paymentData) {
56
- return this.request("POST", "/payment-method-token", {
57
- creditCard: {
58
- cardNumber: paymentData.cardNumber,
59
- expirationDate: paymentData.expirationDate,
60
- cvv: paymentData.cvv,
61
- cardholderName: paymentData.cardholderName,
62
- },
63
- });
64
- }
65
- async addPaymentMethodToCustomer(customerId, token) {
66
- return this.request("POST", `/customer/${encodeURIComponent(customerId)}/payment-method`, { token });
67
- }
68
- // ==================== Subscription Operations ====================
69
- async getSubscription(id) {
70
- return this.request("GET", `/subscription/${encodeURIComponent(id)}`);
71
- }
72
- async getSubscriptionCustomer(id) {
73
- return this.request("GET", `/subscription/${encodeURIComponent(id)}/customer`);
74
- }
75
- async getSubscriptionPlan(id) {
76
- return this.request("GET", `/subscription/${encodeURIComponent(id)}/plan`);
77
- }
78
- async getSubscriptionPaymentMethod(id) {
79
- return this.request("GET", `/subscription/${encodeURIComponent(id)}/payment-method`);
80
- }
81
- async deleteSubscriptionPromotion(customerId) {
82
- await this.request("DELETE", `/customer/${encodeURIComponent(customerId)}/subscription/promotion`);
83
- }
84
- // ==================== Product Operations ====================
85
- async getProduct() {
86
- return this.request("GET", "/product");
87
- }
88
- // ==================== Plan Operations ====================
89
- async getPlan(id) {
90
- return this.request("GET", `/plan/${encodeURIComponent(id)}`);
91
- }
92
- // ==================== Gateway Account Operations ====================
93
- async getGatewayAccount(id) {
94
- return this.request("GET", `/gateway-account/${encodeURIComponent(id)}`);
95
- }
96
- // ==================== Health Check ====================
97
- async ping() {
98
- return this.request("GET", "/ping");
99
- }
100
- }
101
- //# sourceMappingURL=cheddar-client.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cheddar-client.js","sourceRoot":"","sources":["../../src/lib/cheddar-client.ts"],"names":[],"mappings":"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"}
@@ -1,10 +0,0 @@
1
- import { Tool } from "@modelcontextprotocol/sdk/types.js";
2
- import { CheddarApiClient } from "../lib/cheddar-client.js";
3
- export declare const checkoutTools: Tool[];
4
- export declare function handleCheckoutTool(client: CheddarApiClient, name: string, args: Record<string, unknown> | undefined): Promise<{
5
- content: Array<{
6
- type: string;
7
- text: string;
8
- }>;
9
- }>;
10
- //# sourceMappingURL=checkout.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"checkout.d.ts","sourceRoot":"","sources":["../../src/tools/checkout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAE5D,eAAO,MAAM,aAAa,EAAE,IAAI,EA0I/B,CAAC;AAEF,wBAAsB,kBAAkB,CACtC,MAAM,EAAE,gBAAgB,EACxB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,GACxC,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC,CAsK7D"}