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 +3 -3
- package/package.json +1 -1
- package/src/index.ts +3 -3
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
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
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
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
|
-
-
|
|
99
|
-
-
|
|
100
|
-
-
|
|
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" }),
|