@jadenrazo/cloudcost-mcp 0.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.
@@ -0,0 +1,30 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ _resetLoaderCache,
4
+ getAwsInstances,
5
+ getAzureVmSizes,
6
+ getGcpComputePricing,
7
+ getGcpDiskPricing,
8
+ getGcpMachineTypes,
9
+ getGcpSqlPricing,
10
+ getGcpStoragePricing,
11
+ getInstanceMap,
12
+ getRegionMappings,
13
+ getResourceEquivalents,
14
+ getStorageMap
15
+ } from "./chunk-KZJSZMWM.js";
16
+ export {
17
+ _resetLoaderCache,
18
+ getAwsInstances,
19
+ getAzureVmSizes,
20
+ getGcpComputePricing,
21
+ getGcpDiskPricing,
22
+ getGcpMachineTypes,
23
+ getGcpSqlPricing,
24
+ getGcpStoragePricing,
25
+ getInstanceMap,
26
+ getRegionMappings,
27
+ getResourceEquivalents,
28
+ getStorageMap
29
+ };
30
+ //# sourceMappingURL=loader-WIX54B7L.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@jadenrazo/cloudcost-mcp",
3
+ "version": "0.1.0",
4
+ "description": "MCP server for multi-cloud cost analysis of Terraform codebases",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Jaden Razo",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/jadenrazo/CloudCostMCP.git"
11
+ },
12
+ "homepage": "https://github.com/jadenrazo/CloudCostMCP#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/jadenrazo/CloudCostMCP/issues"
15
+ },
16
+ "keywords": [
17
+ "mcp",
18
+ "terraform",
19
+ "cloud-cost",
20
+ "aws",
21
+ "azure",
22
+ "gcp",
23
+ "cost-estimation",
24
+ "infrastructure"
25
+ ],
26
+ "engines": {
27
+ "node": ">=20.0.0"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "data",
32
+ "README.md",
33
+ "LICENSE"
34
+ ],
35
+ "main": "dist/index.js",
36
+ "types": "dist/index.d.ts",
37
+ "bin": {
38
+ "cloudcost-mcp": "dist/index.js"
39
+ },
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "dev": "tsx src/index.ts",
43
+ "start": "node dist/index.js",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest",
46
+ "lint": "tsc --noEmit",
47
+ "clean": "rm -rf dist",
48
+ "prepare": "npm run build"
49
+ },
50
+ "dependencies": {
51
+ "@modelcontextprotocol/sdk": "^1.12.1",
52
+ "zod": "^3.24.4",
53
+ "better-sqlite3": "^11.9.1",
54
+ "@cdktf/hcl2json": "^0.21.0"
55
+ },
56
+ "devDependencies": {
57
+ "typescript": "^5.8.2",
58
+ "tsup": "^8.4.0",
59
+ "vitest": "^3.1.1",
60
+ "tsx": "^4.19.4",
61
+ "@types/better-sqlite3": "^7.6.13",
62
+ "@types/node": "^22.14.0"
63
+ }
64
+ }