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 +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -2
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("
|
|
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
package/src/index.ts
CHANGED
|
@@ -108,8 +108,8 @@ server.tool(
|
|
|
108
108
|
);
|
|
109
109
|
|
|
110
110
|
server.tool(
|
|
111
|
-
"
|
|
112
|
-
"
|
|
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
|
},
|