gm-mcp 2.0.0 → 2.0.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/dist/index.js CHANGED
@@ -81,7 +81,7 @@ exports.server.tool("debt_collection_by_month", "The company's debt collection r
81
81
  companyName: company_name,
82
82
  });
83
83
  }));
84
- exports.server.tool("get_accessible", "By given customer phone number, awnser the question why they don't access their balance", {
84
+ exports.server.tool("check_eligibility", "Check customer's eligibility for salary advance", {
85
85
  phone_number: zod_1.default.string({ description: "Customer's phone number" }),
86
86
  }, (args) => __awaiter(void 0, void 0, void 0, function* () {
87
87
  const { phone_number } = args;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-mcp",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Mcp server for Gm",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -108,8 +108,8 @@ server.tool(
108
108
  );
109
109
 
110
110
  server.tool(
111
- "get_accessible",
112
- "By given customer phone number, awnser the question why they don't access their balance",
111
+ "check_eligibility",
112
+ "Check customer's eligibility for salary advance",
113
113
  {
114
114
  phone_number: z.string({ description: "Customer's phone number" }),
115
115
  },