cloud-cost-mcp 1.1.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.
Files changed (48) hide show
  1. package/LICENSE +190 -0
  2. package/NOTICE +15 -0
  3. package/README.md +232 -0
  4. package/dist/data/bundled/aws-pricing.json +379 -0
  5. package/dist/data/bundled/azure-pricing.json +367 -0
  6. package/dist/data/bundled/gcp-pricing.json +383 -0
  7. package/dist/data/bundled/oci-pricing.json +290 -0
  8. package/dist/data/cache.d.ts +53 -0
  9. package/dist/data/cache.d.ts.map +1 -0
  10. package/dist/data/cache.js +95 -0
  11. package/dist/data/cache.js.map +1 -0
  12. package/dist/data/fetchers/aws.d.ts +65 -0
  13. package/dist/data/fetchers/aws.d.ts.map +1 -0
  14. package/dist/data/fetchers/aws.js +298 -0
  15. package/dist/data/fetchers/aws.js.map +1 -0
  16. package/dist/data/fetchers/azure.d.ts +83 -0
  17. package/dist/data/fetchers/azure.d.ts.map +1 -0
  18. package/dist/data/fetchers/azure.js +369 -0
  19. package/dist/data/fetchers/azure.js.map +1 -0
  20. package/dist/data/fetchers/gcp.d.ts +44 -0
  21. package/dist/data/fetchers/gcp.d.ts.map +1 -0
  22. package/dist/data/fetchers/gcp.js +182 -0
  23. package/dist/data/fetchers/gcp.js.map +1 -0
  24. package/dist/data/fetchers/oci.d.ts +65 -0
  25. package/dist/data/fetchers/oci.d.ts.map +1 -0
  26. package/dist/data/fetchers/oci.js +130 -0
  27. package/dist/data/fetchers/oci.js.map +1 -0
  28. package/dist/data/loader.d.ts +56 -0
  29. package/dist/data/loader.d.ts.map +1 -0
  30. package/dist/data/loader.js +149 -0
  31. package/dist/data/loader.js.map +1 -0
  32. package/dist/index.d.ts +21 -0
  33. package/dist/index.d.ts.map +1 -0
  34. package/dist/index.js +715 -0
  35. package/dist/index.js.map +1 -0
  36. package/dist/tools/calculator.d.ts +36 -0
  37. package/dist/tools/calculator.d.ts.map +1 -0
  38. package/dist/tools/calculator.js +271 -0
  39. package/dist/tools/calculator.js.map +1 -0
  40. package/dist/tools/compare.d.ts +64 -0
  41. package/dist/tools/compare.d.ts.map +1 -0
  42. package/dist/tools/compare.js +243 -0
  43. package/dist/tools/compare.js.map +1 -0
  44. package/dist/types.d.ts +171 -0
  45. package/dist/types.d.ts.map +1 -0
  46. package/dist/types.js +6 -0
  47. package/dist/types.js.map +1 -0
  48. package/package.json +57 -0
@@ -0,0 +1,367 @@
1
+ {
2
+ "metadata": {
3
+ "provider": "azure",
4
+ "lastUpdated": "2026-01-18T00:00:00Z",
5
+ "source": "Azure Retail Prices API (eastus)",
6
+ "version": "1.0.0",
7
+ "totalProducts": 45,
8
+ "currency": "USD",
9
+ "notes": "Pay-as-you-go pricing. Reserved instances available at 30-70% discount."
10
+ },
11
+ "compute": [
12
+ {
13
+ "provider": "azure",
14
+ "name": "Standard_B1s",
15
+ "displayName": "B1s (Burstable)",
16
+ "vcpus": 1,
17
+ "memoryGB": 1,
18
+ "hourlyPrice": 0.0104,
19
+ "monthlyPrice": 7.59,
20
+ "region": "eastus",
21
+ "category": "general",
22
+ "architecture": "x86",
23
+ "notes": "Burstable, ideal for dev/test"
24
+ },
25
+ {
26
+ "provider": "azure",
27
+ "name": "Standard_B2s",
28
+ "displayName": "B2s (Burstable)",
29
+ "vcpus": 2,
30
+ "memoryGB": 4,
31
+ "hourlyPrice": 0.0416,
32
+ "monthlyPrice": 30.37,
33
+ "region": "eastus",
34
+ "category": "general",
35
+ "architecture": "x86"
36
+ },
37
+ {
38
+ "provider": "azure",
39
+ "name": "Standard_B2ms",
40
+ "displayName": "B2ms (Burstable)",
41
+ "vcpus": 2,
42
+ "memoryGB": 8,
43
+ "hourlyPrice": 0.0832,
44
+ "monthlyPrice": 60.74,
45
+ "region": "eastus",
46
+ "category": "general",
47
+ "architecture": "x86"
48
+ },
49
+ {
50
+ "provider": "azure",
51
+ "name": "Standard_D2s_v5",
52
+ "displayName": "D2s v5 (General Purpose)",
53
+ "vcpus": 2,
54
+ "memoryGB": 8,
55
+ "hourlyPrice": 0.096,
56
+ "monthlyPrice": 70.08,
57
+ "region": "eastus",
58
+ "category": "general",
59
+ "architecture": "x86"
60
+ },
61
+ {
62
+ "provider": "azure",
63
+ "name": "Standard_D4s_v5",
64
+ "displayName": "D4s v5 (General Purpose)",
65
+ "vcpus": 4,
66
+ "memoryGB": 16,
67
+ "hourlyPrice": 0.192,
68
+ "monthlyPrice": 140.16,
69
+ "region": "eastus",
70
+ "category": "general",
71
+ "architecture": "x86"
72
+ },
73
+ {
74
+ "provider": "azure",
75
+ "name": "Standard_D8s_v5",
76
+ "displayName": "D8s v5 (General Purpose)",
77
+ "vcpus": 8,
78
+ "memoryGB": 32,
79
+ "hourlyPrice": 0.384,
80
+ "monthlyPrice": 280.32,
81
+ "region": "eastus",
82
+ "category": "general",
83
+ "architecture": "x86"
84
+ },
85
+ {
86
+ "provider": "azure",
87
+ "name": "Standard_D2ps_v5",
88
+ "displayName": "D2ps v5 (ARM - Ampere)",
89
+ "vcpus": 2,
90
+ "memoryGB": 8,
91
+ "hourlyPrice": 0.077,
92
+ "monthlyPrice": 56.21,
93
+ "region": "eastus",
94
+ "category": "general",
95
+ "architecture": "arm",
96
+ "notes": "Ampere Altra ARM-based, ~20% lower cost"
97
+ },
98
+ {
99
+ "provider": "azure",
100
+ "name": "Standard_D4ps_v5",
101
+ "displayName": "D4ps v5 (ARM - Ampere)",
102
+ "vcpus": 4,
103
+ "memoryGB": 16,
104
+ "hourlyPrice": 0.154,
105
+ "monthlyPrice": 112.42,
106
+ "region": "eastus",
107
+ "category": "general",
108
+ "architecture": "arm"
109
+ },
110
+ {
111
+ "provider": "azure",
112
+ "name": "Standard_D8ps_v5",
113
+ "displayName": "D8ps v5 (ARM - Ampere)",
114
+ "vcpus": 8,
115
+ "memoryGB": 32,
116
+ "hourlyPrice": 0.308,
117
+ "monthlyPrice": 224.84,
118
+ "region": "eastus",
119
+ "category": "general",
120
+ "architecture": "arm"
121
+ },
122
+ {
123
+ "provider": "azure",
124
+ "name": "Standard_F2s_v2",
125
+ "displayName": "F2s v2 (Compute Optimized)",
126
+ "vcpus": 2,
127
+ "memoryGB": 4,
128
+ "hourlyPrice": 0.085,
129
+ "monthlyPrice": 62.05,
130
+ "region": "eastus",
131
+ "category": "compute",
132
+ "architecture": "x86"
133
+ },
134
+ {
135
+ "provider": "azure",
136
+ "name": "Standard_F4s_v2",
137
+ "displayName": "F4s v2 (Compute Optimized)",
138
+ "vcpus": 4,
139
+ "memoryGB": 8,
140
+ "hourlyPrice": 0.169,
141
+ "monthlyPrice": 123.37,
142
+ "region": "eastus",
143
+ "category": "compute",
144
+ "architecture": "x86"
145
+ },
146
+ {
147
+ "provider": "azure",
148
+ "name": "Standard_F8s_v2",
149
+ "displayName": "F8s v2 (Compute Optimized)",
150
+ "vcpus": 8,
151
+ "memoryGB": 16,
152
+ "hourlyPrice": 0.338,
153
+ "monthlyPrice": 246.74,
154
+ "region": "eastus",
155
+ "category": "compute",
156
+ "architecture": "x86"
157
+ },
158
+ {
159
+ "provider": "azure",
160
+ "name": "Standard_E2s_v5",
161
+ "displayName": "E2s v5 (Memory Optimized)",
162
+ "vcpus": 2,
163
+ "memoryGB": 16,
164
+ "hourlyPrice": 0.126,
165
+ "monthlyPrice": 91.98,
166
+ "region": "eastus",
167
+ "category": "memory",
168
+ "architecture": "x86"
169
+ },
170
+ {
171
+ "provider": "azure",
172
+ "name": "Standard_E4s_v5",
173
+ "displayName": "E4s v5 (Memory Optimized)",
174
+ "vcpus": 4,
175
+ "memoryGB": 32,
176
+ "hourlyPrice": 0.252,
177
+ "monthlyPrice": 183.96,
178
+ "region": "eastus",
179
+ "category": "memory",
180
+ "architecture": "x86"
181
+ },
182
+ {
183
+ "provider": "azure",
184
+ "name": "Standard_E8s_v5",
185
+ "displayName": "E8s v5 (Memory Optimized)",
186
+ "vcpus": 8,
187
+ "memoryGB": 64,
188
+ "hourlyPrice": 0.504,
189
+ "monthlyPrice": 367.92,
190
+ "region": "eastus",
191
+ "category": "memory",
192
+ "architecture": "x86"
193
+ },
194
+ {
195
+ "provider": "azure",
196
+ "name": "Standard_NC24ads_A100_v4",
197
+ "displayName": "NC24ads A100 v4 (GPU)",
198
+ "vcpus": 24,
199
+ "memoryGB": 220,
200
+ "hourlyPrice": 3.673,
201
+ "monthlyPrice": 2681.29,
202
+ "region": "eastus",
203
+ "category": "gpu",
204
+ "architecture": "x86",
205
+ "gpuCount": 1,
206
+ "gpuType": "NVIDIA A100",
207
+ "notes": "1x NVIDIA A100 80GB"
208
+ },
209
+ {
210
+ "provider": "azure",
211
+ "name": "Standard_NC4as_T4_v3",
212
+ "displayName": "NC4as T4 v3 (GPU - T4)",
213
+ "vcpus": 4,
214
+ "memoryGB": 28,
215
+ "hourlyPrice": 0.526,
216
+ "monthlyPrice": 383.98,
217
+ "region": "eastus",
218
+ "category": "gpu",
219
+ "architecture": "x86",
220
+ "gpuCount": 1,
221
+ "gpuType": "NVIDIA T4"
222
+ }
223
+ ],
224
+ "storage": [
225
+ {
226
+ "provider": "azure",
227
+ "name": "Blob Hot",
228
+ "type": "object",
229
+ "tier": "hot",
230
+ "pricePerGBMonth": 0.0184,
231
+ "region": "eastus",
232
+ "redundancy": "LRS",
233
+ "notes": "Locally redundant, first 50TB"
234
+ },
235
+ {
236
+ "provider": "azure",
237
+ "name": "Blob Hot (GRS)",
238
+ "type": "object",
239
+ "tier": "hot",
240
+ "pricePerGBMonth": 0.0368,
241
+ "region": "eastus",
242
+ "redundancy": "GRS",
243
+ "notes": "Geo-redundant storage"
244
+ },
245
+ {
246
+ "provider": "azure",
247
+ "name": "Blob Cool",
248
+ "type": "object",
249
+ "tier": "cool",
250
+ "pricePerGBMonth": 0.01,
251
+ "region": "eastus",
252
+ "redundancy": "LRS",
253
+ "notes": "Min 30 days"
254
+ },
255
+ {
256
+ "provider": "azure",
257
+ "name": "Blob Cold",
258
+ "type": "object",
259
+ "tier": "cold",
260
+ "pricePerGBMonth": 0.0045,
261
+ "region": "eastus",
262
+ "redundancy": "LRS",
263
+ "notes": "Min 90 days"
264
+ },
265
+ {
266
+ "provider": "azure",
267
+ "name": "Blob Archive",
268
+ "type": "archive",
269
+ "tier": "archive",
270
+ "pricePerGBMonth": 0.00099,
271
+ "region": "eastus",
272
+ "redundancy": "LRS",
273
+ "notes": "Hours to rehydrate"
274
+ },
275
+ {
276
+ "provider": "azure",
277
+ "name": "Premium SSD v2",
278
+ "type": "block",
279
+ "tier": "hot",
280
+ "pricePerGBMonth": 0.08,
281
+ "region": "eastus",
282
+ "notes": "Per GB, IOPS/throughput billed separately"
283
+ },
284
+ {
285
+ "provider": "azure",
286
+ "name": "Standard SSD E10",
287
+ "type": "block",
288
+ "tier": "hot",
289
+ "pricePerGBMonth": 0.075,
290
+ "region": "eastus",
291
+ "notes": "128GB disk, 500 IOPS"
292
+ },
293
+ {
294
+ "provider": "azure",
295
+ "name": "Azure Files Premium",
296
+ "type": "file",
297
+ "tier": "hot",
298
+ "pricePerGBMonth": 0.16,
299
+ "region": "eastus",
300
+ "notes": "Premium SSD-backed file shares"
301
+ }
302
+ ],
303
+ "egress": {
304
+ "provider": "azure",
305
+ "freeGBPerMonth": 100,
306
+ "tiers": [
307
+ { "upToGB": 10240, "pricePerGB": 0.087 },
308
+ { "upToGB": 51200, "pricePerGB": 0.083 },
309
+ { "upToGB": 153600, "pricePerGB": 0.07 },
310
+ { "upToGB": 512000, "pricePerGB": 0.05 },
311
+ { "upToGB": -1, "pricePerGB": 0.05 }
312
+ ],
313
+ "notes": "First 100GB/month free (Zone 1 - Americas/Europe)"
314
+ },
315
+ "kubernetes": {
316
+ "provider": "azure",
317
+ "name": "AKS",
318
+ "controlPlaneHourly": 0.0,
319
+ "controlPlaneMonthly": 0.0,
320
+ "workerNodeIncluded": false,
321
+ "notes": "FREE control plane! Only pay for worker node VMs. Uptime SLA tier: $0.10/hr/cluster"
322
+ },
323
+ "database": [
324
+ {
325
+ "provider": "azure",
326
+ "name": "Azure SQL Basic",
327
+ "type": "relational",
328
+ "engine": "SQL Server",
329
+ "vcpus": 0,
330
+ "memoryGB": 0,
331
+ "hourlyPrice": 0.0067,
332
+ "monthlyPrice": 4.90,
333
+ "notes": "5 DTUs, 2GB storage included"
334
+ },
335
+ {
336
+ "provider": "azure",
337
+ "name": "Azure SQL S1",
338
+ "type": "relational",
339
+ "engine": "SQL Server",
340
+ "vcpus": 0,
341
+ "memoryGB": 0,
342
+ "hourlyPrice": 0.02,
343
+ "monthlyPrice": 14.60,
344
+ "notes": "20 DTUs, 250GB max"
345
+ },
346
+ {
347
+ "provider": "azure",
348
+ "name": "Azure Database for PostgreSQL Flexible 2vCore",
349
+ "type": "relational",
350
+ "engine": "PostgreSQL",
351
+ "vcpus": 2,
352
+ "memoryGB": 8,
353
+ "hourlyPrice": 0.102,
354
+ "monthlyPrice": 74.46,
355
+ "notes": "Burstable tier"
356
+ },
357
+ {
358
+ "provider": "azure",
359
+ "name": "Cosmos DB Serverless",
360
+ "type": "serverless",
361
+ "engine": "NoSQL",
362
+ "hourlyPrice": 0.0,
363
+ "monthlyPrice": 0.0,
364
+ "notes": "$0.25/million RUs + $0.25/GB storage"
365
+ }
366
+ ]
367
+ }