gm-mcp 1.2.0 → 1.3.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 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 by year (optional) information,product type (optional)",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-mcp",
3
- "version": "1.2.0",
3
+ "version": "1.3.1",
4
4
  "description": "Mcp server for Gm",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
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 by year (optional) information,product type (optional)",
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(),