gm-mcp 1.3.3 → 1.3.5
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 +6 -1
- package/package.json +1 -1
- package/src/index.ts +6 -1
package/dist/index.js
CHANGED
|
@@ -71,7 +71,12 @@ 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:
|
|
74
|
+
description: `
|
|
75
|
+
The company's debt collection, follow by these criteria:
|
|
76
|
+
- Compnany name
|
|
77
|
+
- Year (optional)
|
|
78
|
+
- Product (optional)
|
|
79
|
+
`,
|
|
75
80
|
inputSchema: zod_1.default.object({
|
|
76
81
|
company_name: zod_1.default.string({ description: "Company name to get data" }),
|
|
77
82
|
year: zod_1.default
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -93,7 +93,12 @@ server.tool(
|
|
|
93
93
|
server.registerTool(
|
|
94
94
|
"debt_collection",
|
|
95
95
|
{
|
|
96
|
-
description:
|
|
96
|
+
description: `
|
|
97
|
+
The company's debt collection, follow by these criteria:
|
|
98
|
+
- Compnany name
|
|
99
|
+
- Year (optional)
|
|
100
|
+
- Product (optional)
|
|
101
|
+
`,
|
|
97
102
|
inputSchema: z.object({
|
|
98
103
|
company_name: z.string({ description: "Company name to get data" }),
|
|
99
104
|
year: z
|