@downatthebottomofthemolehole/terraform-best-practices-mcp-server 2.1.3 → 3.0.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.
@@ -4,21 +4,17 @@ declare const analyzeStateManagementInputSchema: z.ZodObject<{
4
4
  terraformCode: z.ZodString;
5
5
  teamSize: z.ZodDefault<z.ZodNumber>;
6
6
  environmentCount: z.ZodDefault<z.ZodNumber>;
7
- currentBackend: z.ZodDefault<z.ZodEnum<["auto", "s3", "azurerm", "gcs", "remote", "local", "unknown"]>>;
7
+ currentBackend: z.ZodDefault<z.ZodEnum<{
8
+ unknown: "unknown";
9
+ auto: "auto";
10
+ s3: "s3";
11
+ azurerm: "azurerm";
12
+ gcs: "gcs";
13
+ remote: "remote";
14
+ local: "local";
15
+ }>>;
8
16
  useWorkspaces: z.ZodDefault<z.ZodBoolean>;
9
- }, "strip", z.ZodTypeAny, {
10
- terraformCode: string;
11
- teamSize: number;
12
- environmentCount: number;
13
- currentBackend: "auto" | "s3" | "azurerm" | "gcs" | "remote" | "local" | "unknown";
14
- useWorkspaces: boolean;
15
- }, {
16
- terraformCode: string;
17
- teamSize?: number | undefined;
18
- environmentCount?: number | undefined;
19
- currentBackend?: "auto" | "s3" | "azurerm" | "gcs" | "remote" | "local" | "unknown" | undefined;
20
- useWorkspaces?: boolean | undefined;
21
- }>;
17
+ }, z.core.$strip>;
22
18
  export type AnalyzeStateManagementInput = z.infer<typeof analyzeStateManagementInputSchema>;
23
19
  export declare const analyzeStateManagementInputJsonSchema: Record<string, unknown>;
24
20
  export declare const analyzeStateManagementTool: ToolDefinition<AnalyzeStateManagementInput>;
@@ -2,14 +2,14 @@ import { z } from "zod";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  declare const analyzeTerraformCodeInputSchema: z.ZodObject<{
4
4
  code: z.ZodString;
5
- focusArea: z.ZodDefault<z.ZodEnum<["modularity", "variables", "outputs", "locals", "general"]>>;
6
- }, "strip", z.ZodTypeAny, {
7
- code: string;
8
- focusArea: "modularity" | "variables" | "outputs" | "locals" | "general";
9
- }, {
10
- code: string;
11
- focusArea?: "modularity" | "variables" | "outputs" | "locals" | "general" | undefined;
12
- }>;
5
+ focusArea: z.ZodDefault<z.ZodEnum<{
6
+ modularity: "modularity";
7
+ variables: "variables";
8
+ outputs: "outputs";
9
+ locals: "locals";
10
+ general: "general";
11
+ }>>;
12
+ }, z.core.$strip>;
13
13
  export type AnalyzeTerraformCodeInput = z.infer<typeof analyzeTerraformCodeInputSchema>;
14
14
  export declare const analyzeTerraformCodeInputJsonSchema: Record<string, unknown>;
15
15
  export declare const analyzeTerraformCodeTool: ToolDefinition<AnalyzeTerraformCodeInput>;
@@ -5,17 +5,7 @@ declare const analyzeTerraformPerformanceInputSchema: z.ZodObject<{
5
5
  stateSizeMb: z.ZodOptional<z.ZodNumber>;
6
6
  workspaceCount: z.ZodOptional<z.ZodNumber>;
7
7
  providerRateLimitSensitive: z.ZodDefault<z.ZodBoolean>;
8
- }, "strip", z.ZodTypeAny, {
9
- terraformCode: string;
10
- providerRateLimitSensitive: boolean;
11
- stateSizeMb?: number | undefined;
12
- workspaceCount?: number | undefined;
13
- }, {
14
- terraformCode: string;
15
- stateSizeMb?: number | undefined;
16
- workspaceCount?: number | undefined;
17
- providerRateLimitSensitive?: boolean | undefined;
18
- }>;
8
+ }, z.core.$strip>;
19
9
  export type AnalyzeTerraformPerformanceInput = z.infer<typeof analyzeTerraformPerformanceInputSchema>;
20
10
  export declare const analyzeTerraformPerformanceInputJsonSchema: Record<string, unknown>;
21
11
  export declare const analyzeTerraformPerformanceTool: ToolDefinition<AnalyzeTerraformPerformanceInput>;
@@ -2,17 +2,9 @@ import { z } from "zod";
2
2
  import type { CommandExecutionResult } from "../lib/exec.js";
3
3
  export declare const commandToolInputSchema: z.ZodObject<{
4
4
  path: z.ZodDefault<z.ZodString>;
5
- extraArgs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
5
+ extraArgs: z.ZodDefault<z.ZodArray<z.ZodString>>;
6
6
  timeoutMs: z.ZodOptional<z.ZodNumber>;
7
- }, "strip", z.ZodTypeAny, {
8
- path: string;
9
- extraArgs: string[];
10
- timeoutMs?: number | undefined;
11
- }, {
12
- path?: string | undefined;
13
- extraArgs?: string[] | undefined;
14
- timeoutMs?: number | undefined;
15
- }>;
7
+ }, z.core.$strip>;
16
8
  export type CommandToolInput = z.infer<typeof commandToolInputSchema>;
17
9
  export declare const commandToolInputJsonSchema: Record<string, unknown>;
18
10
  declare const installHints: Record<string, string>;
@@ -1,18 +1,14 @@
1
1
  import { z } from "zod";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  export declare const fetchProviderBestPracticesInputSchema: z.ZodObject<{
4
- provider: z.ZodEnum<["azure", "aws", "gcp"]>;
4
+ provider: z.ZodEnum<{
5
+ azure: "azure";
6
+ aws: "aws";
7
+ gcp: "gcp";
8
+ }>;
5
9
  topic: z.ZodOptional<z.ZodString>;
6
10
  liveFetch: z.ZodDefault<z.ZodBoolean>;
7
- }, "strip", z.ZodTypeAny, {
8
- provider: "azure" | "aws" | "gcp";
9
- liveFetch: boolean;
10
- topic?: string | undefined;
11
- }, {
12
- provider: "azure" | "aws" | "gcp";
13
- topic?: string | undefined;
14
- liveFetch?: boolean | undefined;
15
- }>;
11
+ }, z.core.$strip>;
16
12
  export type FetchProviderBestPracticesInput = z.infer<typeof fetchProviderBestPracticesInputSchema>;
17
13
  export declare const fetchProviderBestPracticesInputJsonSchema: Record<string, unknown>;
18
14
  export declare const fetchProviderBestPracticesTool: ToolDefinition<FetchProviderBestPracticesInput>;
@@ -3,13 +3,7 @@ import type { ToolDefinition } from "./types.js";
3
3
  export declare const fetchTerraformBestPracticesInputSchema: z.ZodObject<{
4
4
  topic: z.ZodOptional<z.ZodString>;
5
5
  liveFetch: z.ZodDefault<z.ZodBoolean>;
6
- }, "strip", z.ZodTypeAny, {
7
- liveFetch: boolean;
8
- topic?: string | undefined;
9
- }, {
10
- topic?: string | undefined;
11
- liveFetch?: boolean | undefined;
12
- }>;
6
+ }, z.core.$strip>;
13
7
  export type FetchTerraformBestPracticesInput = z.infer<typeof fetchTerraformBestPracticesInputSchema>;
14
8
  export declare const fetchTerraformBestPracticesInputJsonSchema: Record<string, unknown>;
15
9
  export declare const fetchTerraformBestPracticesTool: ToolDefinition<FetchTerraformBestPracticesInput>;
@@ -6,19 +6,7 @@ export declare const fetchTerraformRegistryGuidanceInputSchema: z.ZodObject<{
6
6
  module: z.ZodOptional<z.ZodString>;
7
7
  topic: z.ZodOptional<z.ZodString>;
8
8
  liveFetch: z.ZodDefault<z.ZodBoolean>;
9
- }, "strip", z.ZodTypeAny, {
10
- liveFetch: boolean;
11
- provider?: string | undefined;
12
- topic?: string | undefined;
13
- module?: string | undefined;
14
- resource?: string | undefined;
15
- }, {
16
- provider?: string | undefined;
17
- topic?: string | undefined;
18
- liveFetch?: boolean | undefined;
19
- module?: string | undefined;
20
- resource?: string | undefined;
21
- }>;
9
+ }, z.core.$strip>;
22
10
  export type FetchTerraformRegistryGuidanceInput = z.infer<typeof fetchTerraformRegistryGuidanceInputSchema>;
23
11
  export declare const fetchTerraformRegistryGuidanceInputJsonSchema: Record<string, unknown>;
24
12
  export declare const fetchTerraformRegistryGuidanceTool: ToolDefinition<FetchTerraformRegistryGuidanceInput>;
@@ -4,18 +4,14 @@ declare const generateComplianceSummaryInputSchema: z.ZodObject<{
4
4
  checkovOutput: z.ZodOptional<z.ZodString>;
5
5
  trivyOutput: z.ZodOptional<z.ZodString>;
6
6
  kicsOutput: z.ZodOptional<z.ZodString>;
7
- complianceFramework: z.ZodDefault<z.ZodEnum<["cis", "pci-dss", "hipaa", "sox", "general"]>>;
8
- }, "strip", z.ZodTypeAny, {
9
- complianceFramework: "general" | "cis" | "pci-dss" | "hipaa" | "sox";
10
- checkovOutput?: string | undefined;
11
- trivyOutput?: string | undefined;
12
- kicsOutput?: string | undefined;
13
- }, {
14
- checkovOutput?: string | undefined;
15
- trivyOutput?: string | undefined;
16
- kicsOutput?: string | undefined;
17
- complianceFramework?: "general" | "cis" | "pci-dss" | "hipaa" | "sox" | undefined;
18
- }>;
7
+ complianceFramework: z.ZodDefault<z.ZodEnum<{
8
+ general: "general";
9
+ cis: "cis";
10
+ "pci-dss": "pci-dss";
11
+ hipaa: "hipaa";
12
+ sox: "sox";
13
+ }>>;
14
+ }, z.core.$strip>;
19
15
  export type GenerateComplianceSummaryInput = z.infer<typeof generateComplianceSummaryInputSchema>;
20
16
  export declare const generateComplianceSummaryInputJsonSchema: Record<string, unknown>;
21
17
  export declare const generateComplianceSummaryTool: ToolDefinition<GenerateComplianceSummaryInput>;
@@ -3,13 +3,7 @@ import type { ToolDefinition } from "./types.js";
3
3
  declare const generateCostReportInputSchema: z.ZodObject<{
4
4
  infracostJson: z.ZodString;
5
5
  includeOptimizations: z.ZodDefault<z.ZodBoolean>;
6
- }, "strip", z.ZodTypeAny, {
7
- infracostJson: string;
8
- includeOptimizations: boolean;
9
- }, {
10
- infracostJson: string;
11
- includeOptimizations?: boolean | undefined;
12
- }>;
6
+ }, z.core.$strip>;
13
7
  export type GenerateCostReportInput = z.infer<typeof generateCostReportInputSchema>;
14
8
  export declare const generateCostReportInputJsonSchema: Record<string, unknown>;
15
9
  export declare const generateCostReportTool: ToolDefinition<GenerateCostReportInput>;
@@ -5,17 +5,7 @@ declare const generateTerraformModuleDocsInputSchema: z.ZodObject<{
5
5
  moduleName: z.ZodDefault<z.ZodString>;
6
6
  includeUsageExample: z.ZodDefault<z.ZodBoolean>;
7
7
  includeInputsOutputsTables: z.ZodDefault<z.ZodBoolean>;
8
- }, "strip", z.ZodTypeAny, {
9
- terraformCode: string;
10
- moduleName: string;
11
- includeUsageExample: boolean;
12
- includeInputsOutputsTables: boolean;
13
- }, {
14
- terraformCode: string;
15
- moduleName?: string | undefined;
16
- includeUsageExample?: boolean | undefined;
17
- includeInputsOutputsTables?: boolean | undefined;
18
- }>;
8
+ }, z.core.$strip>;
19
9
  export type GenerateTerraformModuleDocsInput = z.infer<typeof generateTerraformModuleDocsInputSchema>;
20
10
  export declare const generateTerraformModuleDocsInputJsonSchema: Record<string, unknown>;
21
11
  export declare const generateTerraformModuleDocsTool: ToolDefinition<GenerateTerraformModuleDocsInput>;
@@ -2,20 +2,24 @@ import { z } from "zod";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  declare const recommendTerraformModulesInputSchema: z.ZodObject<{
4
4
  terraformCode: z.ZodString;
5
- provider: z.ZodDefault<z.ZodEnum<["aws", "azure", "gcp", "any"]>>;
6
- deploymentIntent: z.ZodDefault<z.ZodEnum<["networking", "kubernetes", "serverless", "storage", "database", "observability", "security", "general"]>>;
5
+ provider: z.ZodDefault<z.ZodEnum<{
6
+ any: "any";
7
+ azure: "azure";
8
+ aws: "aws";
9
+ gcp: "gcp";
10
+ }>>;
11
+ deploymentIntent: z.ZodDefault<z.ZodEnum<{
12
+ general: "general";
13
+ security: "security";
14
+ storage: "storage";
15
+ networking: "networking";
16
+ kubernetes: "kubernetes";
17
+ serverless: "serverless";
18
+ database: "database";
19
+ observability: "observability";
20
+ }>>;
7
21
  maxRecommendations: z.ZodDefault<z.ZodNumber>;
8
- }, "strip", z.ZodTypeAny, {
9
- provider: "azure" | "aws" | "gcp" | "any";
10
- terraformCode: string;
11
- deploymentIntent: "general" | "security" | "storage" | "networking" | "kubernetes" | "serverless" | "database" | "observability";
12
- maxRecommendations: number;
13
- }, {
14
- terraformCode: string;
15
- provider?: "azure" | "aws" | "gcp" | "any" | undefined;
16
- deploymentIntent?: "general" | "security" | "storage" | "networking" | "kubernetes" | "serverless" | "database" | "observability" | undefined;
17
- maxRecommendations?: number | undefined;
18
- }>;
22
+ }, z.core.$strip>;
19
23
  export type RecommendTerraformModulesInput = z.infer<typeof recommendTerraformModulesInputSchema>;
20
24
  export declare const recommendTerraformModulesInputJsonSchema: Record<string, unknown>;
21
25
  export declare const recommendTerraformModulesTool: ToolDefinition<RecommendTerraformModulesInput>;
@@ -2,16 +2,8 @@ import type { CommandToolInput } from "./common.js";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  export declare const runCheckovInputSchema: import("zod").ZodObject<{
4
4
  path: import("zod").ZodDefault<import("zod").ZodString>;
5
- extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
5
+ extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
6
6
  timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
7
- }, "strip", import("zod").ZodTypeAny, {
8
- path: string;
9
- extraArgs: string[];
10
- timeoutMs?: number | undefined;
11
- }, {
12
- path?: string | undefined;
13
- extraArgs?: string[] | undefined;
14
- timeoutMs?: number | undefined;
15
- }>;
7
+ }, import("zod/v4/core").$strip>;
16
8
  export type RunCheckovInput = CommandToolInput;
17
9
  export declare const runCheckovTool: ToolDefinition<RunCheckovInput>;
@@ -2,16 +2,8 @@ import type { CommandToolInput } from "./common.js";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  export declare const runInfracostInputSchema: import("zod").ZodObject<{
4
4
  path: import("zod").ZodDefault<import("zod").ZodString>;
5
- extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
5
+ extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
6
6
  timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
7
- }, "strip", import("zod").ZodTypeAny, {
8
- path: string;
9
- extraArgs: string[];
10
- timeoutMs?: number | undefined;
11
- }, {
12
- path?: string | undefined;
13
- extraArgs?: string[] | undefined;
14
- timeoutMs?: number | undefined;
15
- }>;
7
+ }, import("zod/v4/core").$strip>;
16
8
  export type RunInfracostInput = CommandToolInput;
17
9
  export declare const runInfracostTool: ToolDefinition<RunInfracostInput>;
@@ -2,16 +2,8 @@ import type { CommandToolInput } from "./common.js";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  export declare const runKicsInputSchema: import("zod").ZodObject<{
4
4
  path: import("zod").ZodDefault<import("zod").ZodString>;
5
- extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
5
+ extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
6
6
  timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
7
- }, "strip", import("zod").ZodTypeAny, {
8
- path: string;
9
- extraArgs: string[];
10
- timeoutMs?: number | undefined;
11
- }, {
12
- path?: string | undefined;
13
- extraArgs?: string[] | undefined;
14
- timeoutMs?: number | undefined;
15
- }>;
7
+ }, import("zod/v4/core").$strip>;
16
8
  export type RunKicsInput = CommandToolInput;
17
9
  export declare const runKicsTool: ToolDefinition<RunKicsInput>;
@@ -2,16 +2,8 @@ import type { CommandToolInput } from "./common.js";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  export declare const runTflintInputSchema: import("zod").ZodObject<{
4
4
  path: import("zod").ZodDefault<import("zod").ZodString>;
5
- extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
5
+ extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
6
6
  timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
7
- }, "strip", import("zod").ZodTypeAny, {
8
- path: string;
9
- extraArgs: string[];
10
- timeoutMs?: number | undefined;
11
- }, {
12
- path?: string | undefined;
13
- extraArgs?: string[] | undefined;
14
- timeoutMs?: number | undefined;
15
- }>;
7
+ }, import("zod/v4/core").$strip>;
16
8
  export type RunTflintInput = CommandToolInput;
17
9
  export declare const runTflintTool: ToolDefinition<RunTflintInput>;
@@ -2,16 +2,8 @@ import type { CommandToolInput } from "./common.js";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  export declare const runTrivyInputSchema: import("zod").ZodObject<{
4
4
  path: import("zod").ZodDefault<import("zod").ZodString>;
5
- extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
5
+ extraArgs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
6
6
  timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
7
- }, "strip", import("zod").ZodTypeAny, {
8
- path: string;
9
- extraArgs: string[];
10
- timeoutMs?: number | undefined;
11
- }, {
12
- path?: string | undefined;
13
- extraArgs?: string[] | undefined;
14
- timeoutMs?: number | undefined;
15
- }>;
7
+ }, import("zod/v4/core").$strip>;
16
8
  export type RunTrivyInput = CommandToolInput;
17
9
  export declare const runTrivyTool: ToolDefinition<RunTrivyInput>;
@@ -2,14 +2,12 @@ import { z } from "zod";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  declare const suggestSecurityHardeningInputSchema: z.ZodObject<{
4
4
  scanOutput: z.ZodString;
5
- scanTool: z.ZodDefault<z.ZodEnum<["checkov", "trivy", "kics"]>>;
6
- }, "strip", z.ZodTypeAny, {
7
- scanOutput: string;
8
- scanTool: "checkov" | "trivy" | "kics";
9
- }, {
10
- scanOutput: string;
11
- scanTool?: "checkov" | "trivy" | "kics" | undefined;
12
- }>;
5
+ scanTool: z.ZodDefault<z.ZodEnum<{
6
+ checkov: "checkov";
7
+ trivy: "trivy";
8
+ kics: "kics";
9
+ }>>;
10
+ }, z.core.$strip>;
13
11
  export type SuggestSecurityHardeningInput = z.infer<typeof suggestSecurityHardeningInputSchema>;
14
12
  export declare const suggestSecurityHardeningInputJsonSchema: Record<string, unknown>;
15
13
  export declare const suggestSecurityHardeningTool: ToolDefinition<SuggestSecurityHardeningInput>;
@@ -1,30 +1,33 @@
1
1
  import { z } from "zod";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  declare const suggestTerraformArchitectureInputSchema: z.ZodObject<{
4
- workloadType: z.ZodDefault<z.ZodEnum<["web-api", "data-platform", "event-driven", "platform-foundation", "general"]>>;
5
- environments: z.ZodDefault<z.ZodArray<z.ZodEnum<["dev", "test", "stage", "prod", "sandbox", "dr"]>, "many">>;
4
+ workloadType: z.ZodDefault<z.ZodEnum<{
5
+ general: "general";
6
+ "web-api": "web-api";
7
+ "data-platform": "data-platform";
8
+ "event-driven": "event-driven";
9
+ "platform-foundation": "platform-foundation";
10
+ }>>;
11
+ environments: z.ZodDefault<z.ZodArray<z.ZodEnum<{
12
+ dev: "dev";
13
+ test: "test";
14
+ stage: "stage";
15
+ prod: "prod";
16
+ sandbox: "sandbox";
17
+ dr: "dr";
18
+ }>>>;
6
19
  multiRegion: z.ZodDefault<z.ZodBoolean>;
7
- complianceProfile: z.ZodDefault<z.ZodEnum<["none", "cis", "pci-dss", "hipaa", "sox"]>>;
20
+ complianceProfile: z.ZodDefault<z.ZodEnum<{
21
+ cis: "cis";
22
+ "pci-dss": "pci-dss";
23
+ hipaa: "hipaa";
24
+ sox: "sox";
25
+ none: "none";
26
+ }>>;
8
27
  teamSize: z.ZodDefault<z.ZodNumber>;
9
28
  currentPainPoints: z.ZodOptional<z.ZodString>;
10
29
  includeReferenceLayout: z.ZodDefault<z.ZodBoolean>;
11
- }, "strip", z.ZodTypeAny, {
12
- teamSize: number;
13
- workloadType: "general" | "web-api" | "data-platform" | "event-driven" | "platform-foundation";
14
- environments: ("dev" | "test" | "stage" | "prod" | "sandbox" | "dr")[];
15
- multiRegion: boolean;
16
- complianceProfile: "cis" | "pci-dss" | "hipaa" | "sox" | "none";
17
- includeReferenceLayout: boolean;
18
- currentPainPoints?: string | undefined;
19
- }, {
20
- teamSize?: number | undefined;
21
- workloadType?: "general" | "web-api" | "data-platform" | "event-driven" | "platform-foundation" | undefined;
22
- environments?: ("dev" | "test" | "stage" | "prod" | "sandbox" | "dr")[] | undefined;
23
- multiRegion?: boolean | undefined;
24
- complianceProfile?: "cis" | "pci-dss" | "hipaa" | "sox" | "none" | undefined;
25
- currentPainPoints?: string | undefined;
26
- includeReferenceLayout?: boolean | undefined;
27
- }>;
30
+ }, z.core.$strip>;
28
31
  export type SuggestTerraformArchitectureInput = z.infer<typeof suggestTerraformArchitectureInputSchema>;
29
32
  export declare const suggestTerraformArchitectureInputJsonSchema: Record<string, unknown>;
30
33
  export declare const suggestTerraformArchitectureTool: ToolDefinition<SuggestTerraformArchitectureInput>;
@@ -2,23 +2,27 @@ import { z } from "zod";
2
2
  import type { ToolDefinition } from "./types.js";
3
3
  declare const suggestTerraformTestingStrategyInputSchema: z.ZodObject<{
4
4
  terraformCode: z.ZodOptional<z.ZodString>;
5
- deploymentCriticality: z.ZodDefault<z.ZodEnum<["low", "medium", "high", "mission-critical"]>>;
6
- changeFrequency: z.ZodDefault<z.ZodEnum<["low", "medium", "high"]>>;
7
- ciSystem: z.ZodDefault<z.ZodEnum<["github-actions", "azure-devops", "gitlab", "circleci", "jenkins", "other"]>>;
5
+ deploymentCriticality: z.ZodDefault<z.ZodEnum<{
6
+ low: "low";
7
+ medium: "medium";
8
+ high: "high";
9
+ "mission-critical": "mission-critical";
10
+ }>>;
11
+ changeFrequency: z.ZodDefault<z.ZodEnum<{
12
+ low: "low";
13
+ medium: "medium";
14
+ high: "high";
15
+ }>>;
16
+ ciSystem: z.ZodDefault<z.ZodEnum<{
17
+ "github-actions": "github-actions";
18
+ "azure-devops": "azure-devops";
19
+ gitlab: "gitlab";
20
+ circleci: "circleci";
21
+ jenkins: "jenkins";
22
+ other: "other";
23
+ }>>;
8
24
  includeExamplePipeline: z.ZodDefault<z.ZodBoolean>;
9
- }, "strip", z.ZodTypeAny, {
10
- deploymentCriticality: "low" | "medium" | "high" | "mission-critical";
11
- changeFrequency: "low" | "medium" | "high";
12
- ciSystem: "github-actions" | "azure-devops" | "gitlab" | "circleci" | "jenkins" | "other";
13
- includeExamplePipeline: boolean;
14
- terraformCode?: string | undefined;
15
- }, {
16
- terraformCode?: string | undefined;
17
- deploymentCriticality?: "low" | "medium" | "high" | "mission-critical" | undefined;
18
- changeFrequency?: "low" | "medium" | "high" | undefined;
19
- ciSystem?: "github-actions" | "azure-devops" | "gitlab" | "circleci" | "jenkins" | "other" | undefined;
20
- includeExamplePipeline?: boolean | undefined;
21
- }>;
25
+ }, z.core.$strip>;
22
26
  export type SuggestTerraformTestingStrategyInput = z.infer<typeof suggestTerraformTestingStrategyInputSchema>;
23
27
  export declare const suggestTerraformTestingStrategyInputJsonSchema: Record<string, unknown>;
24
28
  export declare const suggestTerraformTestingStrategyTool: ToolDefinition<SuggestTerraformTestingStrategyInput>;
package/mcp.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/DownAtTheBottomOfTheMoleHole/terraform-best-practices-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "2.1.3",
9
+ "version": "3.0.0",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@downatthebottomofthemolehole/terraform-best-practices-mcp-server",
3
- "version": "2.1.3",
3
+ "version": "3.0.0",
4
4
  "mcpName": "io.github.DownAtTheBottomOfTheMoleHole/terraform-best-practices",
5
5
  "description": "MCP server for Terraform cost, lint, security, and cloud best-practice guidance.",
6
6
  "type": "module",
@@ -54,7 +54,7 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@modelcontextprotocol/sdk": "1.27.1",
57
- "zod": "^3.23.8"
57
+ "zod": "^4.3.6"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/node": "25.3.5",