payrolla-mcp 0.2.1 → 0.2.3
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 +2 -8
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -55,7 +55,7 @@ async function calculatePayroll(client, input) {
|
|
|
55
55
|
} = input;
|
|
56
56
|
const payments = [
|
|
57
57
|
{
|
|
58
|
-
paymentAmount:
|
|
58
|
+
paymentAmount: void 0,
|
|
59
59
|
paymentName: "Maas",
|
|
60
60
|
paymentType: PaymentType.RegularPayment,
|
|
61
61
|
paymentRef: "1"
|
|
@@ -120,13 +120,7 @@ async function calculatePayroll(client, input) {
|
|
|
120
120
|
};
|
|
121
121
|
}
|
|
122
122
|
async function calculateBulkPayroll(client, input) {
|
|
123
|
-
const {
|
|
124
|
-
employees,
|
|
125
|
-
year,
|
|
126
|
-
month,
|
|
127
|
-
periodCount = 1,
|
|
128
|
-
customParams
|
|
129
|
-
} = input;
|
|
123
|
+
const { employees, year, month, periodCount = 1, customParams } = input;
|
|
130
124
|
const employeeResults = [];
|
|
131
125
|
let totalYearlyCost = 0;
|
|
132
126
|
let totalYearlyNet = 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "payrolla-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "MCP server for Payrolla payroll budget simulations - enables LLMs to calculate Turkish payroll and simulate budget scenarios",
|
|
5
5
|
"author": "Payrolla",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
50
|
-
"payrolla": "^0.2.
|
|
50
|
+
"payrolla": "^0.2.2",
|
|
51
51
|
"zod": "^3.25.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|