gm-mcp 1.2.0 → 1.2.1
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 -3
package/dist/index.js
CHANGED
|
@@ -71,7 +71,7 @@ exports.server.tool("statistic_salary_x3_in_range", "Get statistic salary x3 wit
|
|
|
71
71
|
});
|
|
72
72
|
}));
|
|
73
73
|
exports.server.registerTool("debt_collection", {
|
|
74
|
-
description: "The company's debt collection
|
|
74
|
+
description: "The company's debt collection",
|
|
75
75
|
inputSchema: zod_1.default.object({
|
|
76
76
|
company_name: zod_1.default.string({ description: "Company name to get data" }),
|
|
77
77
|
year: zod_1.default
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -93,13 +93,12 @@ server.tool(
|
|
|
93
93
|
server.registerTool(
|
|
94
94
|
"debt_collection",
|
|
95
95
|
{
|
|
96
|
-
description: "The company's debt collection
|
|
96
|
+
description: "The company's debt collection",
|
|
97
97
|
inputSchema: z.object({
|
|
98
98
|
company_name: z.string({ description: "Company name to get data" }),
|
|
99
99
|
year: z
|
|
100
100
|
.string({
|
|
101
|
-
description:
|
|
102
|
-
"Year to get company debt collection,if year is not provided use this year (vietname time zone)",
|
|
101
|
+
description: "Year to get company debt collection,if year is not provided use this year (vietname time zone)",
|
|
103
102
|
})
|
|
104
103
|
.default("2025")
|
|
105
104
|
.optional(),
|