gm-mcp 1.3.5 → 1.3.6

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
@@ -73,9 +73,9 @@ exports.server.tool("statistic_salary_x3_in_range", "Get statistic salary x3 wit
73
73
  exports.server.registerTool("debt_collection", {
74
74
  description: `
75
75
  The company's debt collection, follow by these criteria:
76
- - Compnany name
77
- - Year (optional)
78
- - Product (optional)
76
+ - compnany name
77
+ - year (optional), if it is not provided use default value
78
+ - product (optional), if it is not provided use default value
79
79
  `,
80
80
  inputSchema: zod_1.default.object({
81
81
  company_name: zod_1.default.string({ description: "Company name to get data" }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-mcp",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "Mcp server for Gm",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -95,9 +95,9 @@ server.registerTool(
95
95
  {
96
96
  description: `
97
97
  The company's debt collection, follow by these criteria:
98
- - Compnany name
99
- - Year (optional)
100
- - Product (optional)
98
+ - compnany name
99
+ - year (optional), if it is not provided use default value
100
+ - product (optional), if it is not provided use default value
101
101
  `,
102
102
  inputSchema: z.object({
103
103
  company_name: z.string({ description: "Company name to get data" }),