@suveren/gateway 0.7.6 → 0.8.0
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/content/integrations/mollie.json +103 -28
- package/dist/mcp-server/http.mjs +228 -118
- package/dist/ui/assets/{index-CsrM6RQr.js → index-BFnSVa9N.js} +22 -22
- package/dist/ui/index.html +1 -1
- package/node_modules/@hap/core/dist/index.d.mts +29 -6
- package/node_modules/@hap/core/dist/index.d.ts +29 -6
- package/node_modules/@hap/core/dist/index.js +54 -8
- package/node_modules/@hap/core/dist/index.mjs +53 -8
- package/node_modules/@hap/core/package.json +2 -1
- package/node_modules/@hap/core/src/frame.ts +115 -14
- package/node_modules/@hap/core/src/gatekeeper.ts +26 -0
- package/node_modules/@hap/core/src/types.ts +7 -1
- package/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/buffer.buffer.d.ts +5 -0
- package/node_modules/@types/node/crypto.d.ts +0 -2
- package/node_modules/@types/node/dgram.d.ts +119 -4
- package/node_modules/@types/node/ffi.d.ts +1 -1
- package/node_modules/@types/node/fs/promises.d.ts +61 -65
- package/node_modules/@types/node/fs.d.ts +86 -76
- package/node_modules/@types/node/http.d.ts +1 -1
- package/node_modules/@types/node/http2.d.ts +2 -2
- package/node_modules/@types/node/index.d.ts +1 -0
- package/node_modules/@types/node/inspector.d.ts +2 -1
- package/node_modules/@types/node/net.d.ts +108 -16
- package/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/node/quic.d.ts +37 -11
- package/node_modules/@types/node/stream/iter.d.ts +4 -4
- package/node_modules/@types/node/tls.d.ts +24 -0
- package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +5 -0
- package/node_modules/@types/node/ts5.6/index.d.ts +1 -0
- package/node_modules/@types/node/ts5.7/index.d.ts +1 -0
- package/node_modules/@types/node/tty.d.ts +4 -3
- package/node_modules/@types/node/vfs.d.ts +210 -0
- package/node_modules/@types/node/vm.d.ts +1 -1
- package/node_modules/express-rate-limit/dist/index.cjs +6 -3
- package/node_modules/express-rate-limit/dist/index.d.cts +11 -0
- package/node_modules/express-rate-limit/dist/index.d.mts +11 -0
- package/node_modules/express-rate-limit/dist/index.d.ts +11 -0
- package/node_modules/express-rate-limit/dist/index.mjs +6 -3
- package/node_modules/express-rate-limit/{license.md → license} +7 -6
- package/node_modules/express-rate-limit/package.json +5 -5
- package/node_modules/express-rate-limit/readme.md +1 -0
- package/node_modules/fast-uri/index.js +20 -5
- package/node_modules/fast-uri/lib/utils.js +8 -1
- package/node_modules/fast-uri/package.json +1 -1
- package/node_modules/fast-uri/test/component-safe-serialization.test.js +58 -0
- package/node_modules/fast-uri/test/ipv6-validation.test.js +34 -0
- package/node_modules/ip-address/README.md +92 -82
- package/node_modules/ip-address/dist/common.d.ts +20 -0
- package/node_modules/ip-address/dist/common.js +36 -0
- package/node_modules/ip-address/dist/common.js.map +1 -1
- package/node_modules/ip-address/dist/ipv4.d.ts +50 -0
- package/node_modules/ip-address/dist/ipv4.js +75 -0
- package/node_modules/ip-address/dist/ipv4.js.map +1 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +79 -10
- package/node_modules/ip-address/dist/ipv6.js +120 -30
- package/node_modules/ip-address/dist/ipv6.js.map +1 -1
- package/node_modules/ip-address/dist/v4/constants.d.ts +12 -0
- package/node_modules/ip-address/dist/v4/constants.js +40 -1
- package/node_modules/ip-address/dist/v4/constants.js.map +1 -1
- package/node_modules/ip-address/dist/v6/constants.d.ts +14 -0
- package/node_modules/ip-address/dist/v6/constants.js +47 -1
- package/node_modules/ip-address/dist/v6/constants.js.map +1 -1
- package/node_modules/ip-address/package.json +1 -1
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +6 -17
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +11 -34
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +15 -35
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +3 -8
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +5 -5
- package/node_modules/jose/dist/types/jwks/local.d.ts +6 -10
- package/node_modules/jose/dist/types/jwks/remote.d.ts +13 -24
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +5 -10
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +7 -16
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +11 -21
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +10 -20
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +6 -13
- package/node_modules/jose/dist/types/jwt/sign.d.ts +5 -6
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +9 -14
- package/node_modules/jose/dist/types/jwt/verify.d.ts +9 -19
- package/node_modules/jose/dist/types/key/export.d.ts +4 -4
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +6 -8
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +4 -11
- package/node_modules/jose/dist/types/key/import.d.ts +10 -17
- package/node_modules/jose/dist/types/types.d.ts +44 -84
- package/node_modules/jose/dist/types/util/base64url.d.ts +2 -2
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +3 -10
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +4 -4
- package/node_modules/jose/dist/types/util/errors.d.ts +26 -53
- package/node_modules/jose/dist/webapi/index.js +70 -32
- package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +7 -8
- package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +42 -48
- package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +14 -14
- package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +53 -64
- package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +38 -49
- package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +121 -169
- package/node_modules/jose/dist/webapi/jwk/embedded.js +30 -32
- package/node_modules/jose/dist/webapi/jwk/thumbprint.js +54 -70
- package/node_modules/jose/dist/webapi/jwks/local.js +47 -64
- package/node_modules/jose/dist/webapi/jwks/remote.js +88 -136
- package/node_modules/jose/dist/webapi/jws/compact/sign.js +21 -21
- package/node_modules/jose/dist/webapi/jws/compact/verify.js +7 -8
- package/node_modules/jose/dist/webapi/jws/flattened/sign.js +29 -31
- package/node_modules/jose/dist/webapi/jws/flattened/verify.js +21 -24
- package/node_modules/jose/dist/webapi/jws/general/sign.js +61 -72
- package/node_modules/jose/dist/webapi/jws/general/verify.js +45 -69
- package/node_modules/jose/dist/webapi/jwt/decrypt.js +13 -20
- package/node_modules/jose/dist/webapi/jwt/encrypt.js +57 -70
- package/node_modules/jose/dist/webapi/jwt/sign.js +17 -16
- package/node_modules/jose/dist/webapi/jwt/unsecured.js +32 -40
- package/node_modules/jose/dist/webapi/jwt/verify.js +12 -14
- package/node_modules/jose/dist/webapi/key/export.js +32 -37
- package/node_modules/jose/dist/webapi/key/generate_key_pair.js +40 -48
- package/node_modules/jose/dist/webapi/key/generate_secret.js +35 -40
- package/node_modules/jose/dist/webapi/key/import.js +52 -56
- package/node_modules/jose/dist/webapi/lib/asn1.js +130 -169
- package/node_modules/jose/dist/webapi/lib/base64.js +18 -20
- package/node_modules/jose/dist/webapi/lib/buffer_utils.js +34 -38
- package/node_modules/jose/dist/webapi/lib/content_encryption.js +79 -115
- package/node_modules/jose/dist/webapi/lib/crypto_key.js +24 -25
- package/node_modules/jose/dist/webapi/lib/deflate.js +45 -47
- package/node_modules/jose/dist/webapi/lib/helpers.js +40 -37
- package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +10 -24
- package/node_modules/jose/dist/webapi/lib/is_key_like.js +17 -15
- package/node_modules/jose/dist/webapi/lib/jwe_algorithms.js +106 -93
- package/node_modules/jose/dist/webapi/lib/jwe_decrypt.js +207 -230
- package/node_modules/jose/dist/webapi/lib/jwe_encrypt.js +104 -138
- package/node_modules/jose/dist/webapi/lib/jwk_metadata.js +17 -18
- package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +9 -16
- package/node_modules/jose/dist/webapi/lib/jws_algorithms.js +62 -61
- package/node_modules/jose/dist/webapi/lib/jws_sign.js +50 -75
- package/node_modules/jose/dist/webapi/lib/jws_verify.js +80 -125
- package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +123 -209
- package/node_modules/jose/dist/webapi/lib/key.js +84 -136
- package/node_modules/jose/dist/webapi/lib/key_algorithm.js +13 -8
- package/node_modules/jose/dist/webapi/lib/key_descriptor.js +8 -6
- package/node_modules/jose/dist/webapi/lib/key_management.js +200 -231
- package/node_modules/jose/dist/webapi/lib/key_options.js +7 -5
- package/node_modules/jose/dist/webapi/lib/options.js +55 -68
- package/node_modules/jose/dist/webapi/lib/signing.js +18 -22
- package/node_modules/jose/dist/webapi/lib/type_checks.js +26 -29
- package/node_modules/jose/dist/webapi/util/base64url.js +26 -35
- package/node_modules/jose/dist/webapi/util/decode_jwt.js +32 -31
- package/node_modules/jose/dist/webapi/util/decode_protected_header.js +18 -23
- package/node_modules/jose/dist/webapi/util/errors.js +94 -84
- package/node_modules/jose/package.json +17 -81
- package/package.json +2 -2
- package/profiles/calendar/0.5.profile.json +190 -0
- package/profiles/charge/0.5.profile.json +210 -0
- package/profiles/customers/0.7.profile.json +157 -0
- package/profiles/deploy/0.9.profile.json +176 -0
- package/profiles/email/0.6.profile.json +208 -0
- package/profiles/index.json +9 -1
- package/profiles/publish/0.5.profile.json +186 -0
- package/profiles/purchase/0.5.profile.json +231 -0
- package/profiles/records/0.5.profile.json +117 -0
|
@@ -8,19 +8,32 @@
|
|
|
8
8
|
"npmPackage": "mcp-remote",
|
|
9
9
|
"mcp": {
|
|
10
10
|
"command": "mcp-remote",
|
|
11
|
-
"args": [
|
|
11
|
+
"args": [
|
|
12
|
+
"https://mcp.mollie.com/mcp",
|
|
13
|
+
"--header",
|
|
14
|
+
"Authorization: Bearer ${MOLLIE_ACCESS_TOKEN}"
|
|
15
|
+
]
|
|
12
16
|
},
|
|
13
17
|
"credentials": {
|
|
14
18
|
"fields": [
|
|
15
|
-
{
|
|
19
|
+
{
|
|
20
|
+
"key": "accessToken",
|
|
21
|
+
"label": "Access Token",
|
|
22
|
+
"type": "password",
|
|
23
|
+
"placeholder": "access_org_..."
|
|
24
|
+
}
|
|
16
25
|
],
|
|
17
|
-
"envMapping": {
|
|
26
|
+
"envMapping": {
|
|
27
|
+
"MOLLIE_ACCESS_TOKEN": "accessToken"
|
|
28
|
+
}
|
|
18
29
|
},
|
|
19
30
|
"oauth": null,
|
|
20
31
|
"toolGating": {
|
|
21
32
|
"default": {
|
|
22
33
|
"executionMapping": {},
|
|
23
|
-
"staticExecution": {
|
|
34
|
+
"staticExecution": {
|
|
35
|
+
"action_type": "unclassified"
|
|
36
|
+
}
|
|
24
37
|
},
|
|
25
38
|
"overrides": {
|
|
26
39
|
"CreatePayment": {
|
|
@@ -28,67 +41,93 @@
|
|
|
28
41
|
"amount": "amount",
|
|
29
42
|
"currency": "currency"
|
|
30
43
|
},
|
|
31
|
-
"staticExecution": {
|
|
44
|
+
"staticExecution": {
|
|
45
|
+
"action_type": "charge"
|
|
46
|
+
}
|
|
32
47
|
},
|
|
33
48
|
"CreatePaymentForCustomer": {
|
|
34
49
|
"executionMapping": {
|
|
35
50
|
"amount": "amount",
|
|
36
51
|
"currency": "currency"
|
|
37
52
|
},
|
|
38
|
-
"staticExecution": {
|
|
53
|
+
"staticExecution": {
|
|
54
|
+
"action_type": "charge"
|
|
55
|
+
}
|
|
39
56
|
},
|
|
40
57
|
"CreatePaymentLink": {
|
|
41
58
|
"executionMapping": {
|
|
42
59
|
"amount": "amount",
|
|
43
60
|
"currency": "currency"
|
|
44
61
|
},
|
|
45
|
-
"staticExecution": {
|
|
62
|
+
"staticExecution": {
|
|
63
|
+
"action_type": "charge"
|
|
64
|
+
}
|
|
46
65
|
},
|
|
47
66
|
"CreateCapture": {
|
|
48
67
|
"executionMapping": {
|
|
49
68
|
"amount_value": "amount",
|
|
50
69
|
"amount_currency": "currency"
|
|
51
70
|
},
|
|
52
|
-
"staticExecution": {
|
|
71
|
+
"staticExecution": {
|
|
72
|
+
"action_type": "charge"
|
|
73
|
+
}
|
|
53
74
|
},
|
|
54
75
|
"CreateSubscription": {
|
|
55
76
|
"executionMapping": {
|
|
56
77
|
"amount_value": "amount",
|
|
57
78
|
"amount_currency": "currency"
|
|
58
79
|
},
|
|
59
|
-
"staticExecution": {
|
|
80
|
+
"staticExecution": {
|
|
81
|
+
"action_type": "subscribe"
|
|
82
|
+
}
|
|
60
83
|
},
|
|
61
84
|
"UpdateSubscription": {
|
|
62
85
|
"executionMapping": {},
|
|
63
|
-
"staticExecution": {
|
|
86
|
+
"staticExecution": {
|
|
87
|
+
"action_type": "subscribe"
|
|
88
|
+
}
|
|
64
89
|
},
|
|
65
90
|
"CancelSubscription": {
|
|
66
91
|
"executionMapping": {},
|
|
67
|
-
"staticExecution": {
|
|
92
|
+
"staticExecution": {
|
|
93
|
+
"action_type": "subscribe"
|
|
94
|
+
}
|
|
68
95
|
},
|
|
69
96
|
"CreateCustomer": {
|
|
70
97
|
"executionMapping": {},
|
|
71
|
-
"staticExecution": {
|
|
98
|
+
"staticExecution": {
|
|
99
|
+
"action_type": "charge"
|
|
100
|
+
}
|
|
72
101
|
},
|
|
73
102
|
"UpdateCustomer": {
|
|
74
103
|
"executionMapping": {},
|
|
75
|
-
"staticExecution": {
|
|
104
|
+
"staticExecution": {
|
|
105
|
+
"action_type": "charge"
|
|
106
|
+
}
|
|
76
107
|
},
|
|
77
108
|
"CreateMandate": {
|
|
78
109
|
"executionMapping": {},
|
|
79
|
-
"staticExecution": {
|
|
110
|
+
"staticExecution": {
|
|
111
|
+
"action_type": "charge"
|
|
112
|
+
}
|
|
80
113
|
},
|
|
81
114
|
"RevokeMandate": {
|
|
82
115
|
"executionMapping": {},
|
|
83
|
-
"staticExecution": {
|
|
116
|
+
"staticExecution": {
|
|
117
|
+
"action_type": "charge"
|
|
118
|
+
}
|
|
84
119
|
},
|
|
85
120
|
"CreateWebhook": {
|
|
86
121
|
"executionMapping": {},
|
|
87
|
-
"staticExecution": {
|
|
122
|
+
"staticExecution": {
|
|
123
|
+
"action_type": "charge"
|
|
124
|
+
}
|
|
88
125
|
},
|
|
89
126
|
"UpdateWebhook": {
|
|
90
127
|
"executionMapping": {},
|
|
91
|
-
"staticExecution": {
|
|
128
|
+
"staticExecution": {
|
|
129
|
+
"action_type": "charge"
|
|
130
|
+
}
|
|
92
131
|
}
|
|
93
132
|
}
|
|
94
133
|
},
|
|
@@ -98,33 +137,69 @@
|
|
|
98
137
|
"description": "Read-only. View payments, balances, invoices, and transaction history.",
|
|
99
138
|
"risk": "low",
|
|
100
139
|
"mode": "automatic",
|
|
101
|
-
"bounds": {
|
|
102
|
-
|
|
140
|
+
"bounds": {
|
|
141
|
+
"amount_max": "0",
|
|
142
|
+
"amount_daily_max": "0",
|
|
143
|
+
"amount_monthly_max": "0",
|
|
144
|
+
"transaction_count_daily_max": "100"
|
|
145
|
+
},
|
|
146
|
+
"context": {
|
|
147
|
+
"currency": "EUR",
|
|
148
|
+
"action_type": "charge"
|
|
149
|
+
},
|
|
103
150
|
"intent": "Allow the agent to monitor payments and view transaction history. Read-only — no payments are created or modified.",
|
|
104
151
|
"ttl": 2592000,
|
|
105
|
-
"tags": [
|
|
152
|
+
"tags": [
|
|
153
|
+
"read-only",
|
|
154
|
+
"EUR",
|
|
155
|
+
"100 ops/day"
|
|
156
|
+
]
|
|
106
157
|
},
|
|
107
158
|
{
|
|
108
159
|
"name": "Small Payments",
|
|
109
|
-
"description": "Create payment links and process charges up to
|
|
160
|
+
"description": "Create payment links and process charges up to €50 per transaction.",
|
|
110
161
|
"risk": "medium",
|
|
111
162
|
"mode": "automatic",
|
|
112
|
-
"bounds": {
|
|
113
|
-
|
|
114
|
-
|
|
163
|
+
"bounds": {
|
|
164
|
+
"amount_max": "50",
|
|
165
|
+
"amount_daily_max": "200",
|
|
166
|
+
"amount_monthly_max": "2000",
|
|
167
|
+
"transaction_count_daily_max": "20"
|
|
168
|
+
},
|
|
169
|
+
"context": {
|
|
170
|
+
"currency": "EUR",
|
|
171
|
+
"action_type": "charge"
|
|
172
|
+
},
|
|
173
|
+
"intent": "Allow the agent to create payment links and process small charges for routine invoicing. Max €50 per transaction, €200 per day.",
|
|
115
174
|
"ttl": 2592000,
|
|
116
|
-
"tags": [
|
|
175
|
+
"tags": [
|
|
176
|
+
"€50/tx",
|
|
177
|
+
"€200/day",
|
|
178
|
+
"20 ops/day"
|
|
179
|
+
]
|
|
117
180
|
},
|
|
118
181
|
{
|
|
119
182
|
"name": "Full Payment Management",
|
|
120
183
|
"description": "Payments, refunds, and subscriptions. Every action requires your approval.",
|
|
121
184
|
"risk": "high",
|
|
122
185
|
"mode": "review",
|
|
123
|
-
"bounds": {
|
|
124
|
-
|
|
186
|
+
"bounds": {
|
|
187
|
+
"amount_max": "1000",
|
|
188
|
+
"amount_daily_max": "5000",
|
|
189
|
+
"amount_monthly_max": "20000",
|
|
190
|
+
"transaction_count_daily_max": "50"
|
|
191
|
+
},
|
|
192
|
+
"context": {
|
|
193
|
+
"currency": "EUR",
|
|
194
|
+
"action_type": "charge,refund,subscribe"
|
|
195
|
+
},
|
|
125
196
|
"intent": "Full payment management — create payments, issue refunds, manage subscriptions. Every write action requires human review before execution.",
|
|
126
197
|
"ttl": 2592000,
|
|
127
|
-
"tags": [
|
|
198
|
+
"tags": [
|
|
199
|
+
"€1,000/tx",
|
|
200
|
+
"€5,000/day",
|
|
201
|
+
"review mode"
|
|
202
|
+
]
|
|
128
203
|
}
|
|
129
204
|
],
|
|
130
205
|
"setupHint": "Use a test token (test_...) for development.",
|