@zigrivers/scaffold 3.32.0 → 3.33.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 (128) hide show
  1. package/README.md +42 -19
  2. package/content/guides/knowledge-freshness/.diagrams/diagram-0.svg +1 -1
  3. package/content/guides/knowledge-freshness/.diagrams/manifest.json +1 -1
  4. package/content/guides/knowledge-freshness/index.html +9 -5
  5. package/content/guides/knowledge-freshness/index.md +5 -4
  6. package/content/guides/multi-agent/index.html +16 -15
  7. package/content/guides/multi-agent/index.md +16 -15
  8. package/content/guides/pipeline/index.html +2 -2
  9. package/content/guides/pipeline/index.md +2 -2
  10. package/content/knowledge/execution/worktree-management.md +4 -4
  11. package/content/knowledge/mcp-server/mcp-authentication.md +100 -0
  12. package/content/knowledge/mcp-server/mcp-deployment-patterns.md +119 -0
  13. package/content/knowledge/mcp-server/mcp-error-handling.md +131 -0
  14. package/content/knowledge/mcp-server/mcp-observability.md +125 -0
  15. package/content/knowledge/mcp-server/mcp-prompt-primitives.md +119 -0
  16. package/content/knowledge/mcp-server/mcp-protocol-fundamentals.md +130 -0
  17. package/content/knowledge/mcp-server/mcp-resource-design.md +111 -0
  18. package/content/knowledge/mcp-server/mcp-sdk-selection.md +136 -0
  19. package/content/knowledge/mcp-server/mcp-testing-strategies.md +127 -0
  20. package/content/knowledge/mcp-server/mcp-tool-design.md +125 -0
  21. package/content/knowledge/mcp-server/mcp-transport-patterns.md +122 -0
  22. package/content/knowledge/mcp-server/mcp-versioning.md +115 -0
  23. package/content/methodology/custom-defaults.yml +2 -0
  24. package/content/methodology/deep.yml +2 -0
  25. package/content/methodology/mcp-server-overlay.yml +88 -0
  26. package/content/methodology/mvp.yml +2 -0
  27. package/content/pipeline/build/multi-agent-resume.md +107 -11
  28. package/content/pipeline/build/multi-agent-start.md +104 -11
  29. package/content/pipeline/build/single-agent-resume.md +74 -8
  30. package/content/pipeline/build/single-agent-start.md +69 -12
  31. package/content/pipeline/environment/git-workflow.md +8 -2
  32. package/content/pipeline/finalization/materialize-plan-to-beads.md +473 -0
  33. package/content/pipeline/foundation/beads.md +6 -0
  34. package/content/pipeline/planning/implementation-plan-review.md +25 -0
  35. package/content/pipeline/planning/implementation-plan.md +75 -1
  36. package/content/pipeline/specification/mcp-tool-resource-contract.md +77 -0
  37. package/dist/cli/commands/adopt.d.ts.map +1 -1
  38. package/dist/cli/commands/adopt.js +33 -1
  39. package/dist/cli/commands/adopt.js.map +1 -1
  40. package/dist/cli/commands/init.d.ts +6 -0
  41. package/dist/cli/commands/init.d.ts.map +1 -1
  42. package/dist/cli/commands/init.js +46 -3
  43. package/dist/cli/commands/init.js.map +1 -1
  44. package/dist/cli/init-flag-families.d.ts +6 -1
  45. package/dist/cli/init-flag-families.d.ts.map +1 -1
  46. package/dist/cli/init-flag-families.js +59 -2
  47. package/dist/cli/init-flag-families.js.map +1 -1
  48. package/dist/cli/init-flag-families.test.js +86 -1
  49. package/dist/cli/init-flag-families.test.js.map +1 -1
  50. package/dist/config/schema.d.ts +2310 -126
  51. package/dist/config/schema.d.ts.map +1 -1
  52. package/dist/config/schema.js +26 -1
  53. package/dist/config/schema.js.map +1 -1
  54. package/dist/config/schema.test.js +75 -2
  55. package/dist/config/schema.test.js.map +1 -1
  56. package/dist/config/validators/index.d.ts.map +1 -1
  57. package/dist/config/validators/index.js +2 -0
  58. package/dist/config/validators/index.js.map +1 -1
  59. package/dist/config/validators/mcp-server.d.ts +4 -0
  60. package/dist/config/validators/mcp-server.d.ts.map +1 -0
  61. package/dist/config/validators/mcp-server.js +37 -0
  62. package/dist/config/validators/mcp-server.js.map +1 -0
  63. package/dist/config/validators/mcp-server.test.d.ts +2 -0
  64. package/dist/config/validators/mcp-server.test.d.ts.map +1 -0
  65. package/dist/config/validators/mcp-server.test.js +47 -0
  66. package/dist/config/validators/mcp-server.test.js.map +1 -0
  67. package/dist/core/assembly/materialize-plan-to-beads-assembly.test.d.ts +2 -0
  68. package/dist/core/assembly/materialize-plan-to-beads-assembly.test.d.ts.map +1 -0
  69. package/dist/core/assembly/materialize-plan-to-beads-assembly.test.js +75 -0
  70. package/dist/core/assembly/materialize-plan-to-beads-assembly.test.js.map +1 -0
  71. package/dist/e2e/project-type-overlays.test.js +83 -0
  72. package/dist/e2e/project-type-overlays.test.js.map +1 -1
  73. package/dist/project/adopt.d.ts.map +1 -1
  74. package/dist/project/adopt.js +3 -1
  75. package/dist/project/adopt.js.map +1 -1
  76. package/dist/project/detectors/coverage.test.js +1 -0
  77. package/dist/project/detectors/coverage.test.js.map +1 -1
  78. package/dist/project/detectors/disambiguate.d.ts.map +1 -1
  79. package/dist/project/detectors/disambiguate.js +6 -1
  80. package/dist/project/detectors/disambiguate.js.map +1 -1
  81. package/dist/project/detectors/disambiguate.test.js +18 -0
  82. package/dist/project/detectors/disambiguate.test.js.map +1 -1
  83. package/dist/project/detectors/index.d.ts.map +1 -1
  84. package/dist/project/detectors/index.js +2 -1
  85. package/dist/project/detectors/index.js.map +1 -1
  86. package/dist/project/detectors/mcp-server.d.ts +4 -0
  87. package/dist/project/detectors/mcp-server.d.ts.map +1 -0
  88. package/dist/project/detectors/mcp-server.js +91 -0
  89. package/dist/project/detectors/mcp-server.js.map +1 -0
  90. package/dist/project/detectors/mcp-server.test.d.ts +2 -0
  91. package/dist/project/detectors/mcp-server.test.d.ts.map +1 -0
  92. package/dist/project/detectors/mcp-server.test.js +115 -0
  93. package/dist/project/detectors/mcp-server.test.js.map +1 -0
  94. package/dist/project/detectors/types.d.ts +6 -2
  95. package/dist/project/detectors/types.d.ts.map +1 -1
  96. package/dist/project/detectors/types.js.map +1 -1
  97. package/dist/project/gitignore.d.ts.map +1 -1
  98. package/dist/project/gitignore.js +4 -0
  99. package/dist/project/gitignore.js.map +1 -1
  100. package/dist/project/gitignore.test.js +1 -0
  101. package/dist/project/gitignore.test.js.map +1 -1
  102. package/dist/types/config.d.ts +8 -1
  103. package/dist/types/config.d.ts.map +1 -1
  104. package/dist/wizard/copy/core.d.ts.map +1 -1
  105. package/dist/wizard/copy/core.js +4 -0
  106. package/dist/wizard/copy/core.js.map +1 -1
  107. package/dist/wizard/copy/index.d.ts.map +1 -1
  108. package/dist/wizard/copy/index.js +2 -0
  109. package/dist/wizard/copy/index.js.map +1 -1
  110. package/dist/wizard/copy/mcp-server.d.ts +3 -0
  111. package/dist/wizard/copy/mcp-server.d.ts.map +1 -0
  112. package/dist/wizard/copy/mcp-server.js +40 -0
  113. package/dist/wizard/copy/mcp-server.js.map +1 -0
  114. package/dist/wizard/copy/types.d.ts +5 -1
  115. package/dist/wizard/copy/types.d.ts.map +1 -1
  116. package/dist/wizard/flags.d.ts +9 -1
  117. package/dist/wizard/flags.d.ts.map +1 -1
  118. package/dist/wizard/questions.d.ts +4 -2
  119. package/dist/wizard/questions.d.ts.map +1 -1
  120. package/dist/wizard/questions.js +37 -0
  121. package/dist/wizard/questions.js.map +1 -1
  122. package/dist/wizard/questions.test.js +107 -0
  123. package/dist/wizard/questions.test.js.map +1 -1
  124. package/dist/wizard/wizard.d.ts +3 -2
  125. package/dist/wizard/wizard.d.ts.map +1 -1
  126. package/dist/wizard/wizard.js +3 -1
  127. package/dist/wizard/wizard.js.map +1 -1
  128. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- export declare const ProjectTypeSchema: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
2
+ export declare const ProjectTypeSchema: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
3
3
  export declare const WebAppConfigSchema: z.ZodObject<{
4
4
  renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
5
5
  deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
@@ -163,6 +163,42 @@ export declare const Web3ConfigSchema: z.ZodObject<{
163
163
  }, {
164
164
  scope?: "contracts" | undefined;
165
165
  }>;
166
+ export declare const McpServerConfigSchema: z.ZodEffects<z.ZodObject<{
167
+ language: z.ZodEnum<["typescript", "python"]>;
168
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
169
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
170
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
171
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
172
+ stateful: z.ZodDefault<z.ZodBoolean>;
173
+ }, "strict", z.ZodTypeAny, {
174
+ language: "typescript" | "python";
175
+ transport: "sse" | "stdio" | "streamable-http";
176
+ primitives: ("tools" | "resources" | "prompts")[];
177
+ auth: "none" | "oauth" | "apikey";
178
+ deployment: "local" | "hosted";
179
+ stateful: boolean;
180
+ }, {
181
+ language: "typescript" | "python";
182
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
183
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
184
+ auth?: "none" | "oauth" | "apikey" | undefined;
185
+ deployment?: "local" | "hosted" | undefined;
186
+ stateful?: boolean | undefined;
187
+ }>, {
188
+ language: "typescript" | "python";
189
+ transport: "sse" | "stdio" | "streamable-http";
190
+ primitives: ("tools" | "resources" | "prompts")[];
191
+ auth: "none" | "oauth" | "apikey";
192
+ deployment: "local" | "hosted";
193
+ stateful: boolean;
194
+ }, {
195
+ language: "typescript" | "python";
196
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
197
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
198
+ auth?: "none" | "oauth" | "apikey" | undefined;
199
+ deployment?: "local" | "hosted" | undefined;
200
+ stateful?: boolean | undefined;
201
+ }>;
166
202
  export declare const ResearchConfigSchema: z.ZodObject<{
167
203
  experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
168
204
  interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
@@ -219,7 +255,7 @@ export declare const GameConfigSchema: z.ZodObject<{
219
255
  export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
220
256
  name: z.ZodString;
221
257
  description: z.ZodOptional<z.ZodString>;
222
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
258
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
223
259
  backendConfig: z.ZodOptional<z.ZodObject<{
224
260
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
225
261
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -424,6 +460,42 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
424
460
  }, {
425
461
  scope?: "contracts" | undefined;
426
462
  }>>;
463
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
464
+ language: z.ZodEnum<["typescript", "python"]>;
465
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
466
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
467
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
468
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
469
+ stateful: z.ZodDefault<z.ZodBoolean>;
470
+ }, "strict", z.ZodTypeAny, {
471
+ language: "typescript" | "python";
472
+ transport: "sse" | "stdio" | "streamable-http";
473
+ primitives: ("tools" | "resources" | "prompts")[];
474
+ auth: "none" | "oauth" | "apikey";
475
+ deployment: "local" | "hosted";
476
+ stateful: boolean;
477
+ }, {
478
+ language: "typescript" | "python";
479
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
480
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
481
+ auth?: "none" | "oauth" | "apikey" | undefined;
482
+ deployment?: "local" | "hosted" | undefined;
483
+ stateful?: boolean | undefined;
484
+ }>, {
485
+ language: "typescript" | "python";
486
+ transport: "sse" | "stdio" | "streamable-http";
487
+ primitives: ("tools" | "resources" | "prompts")[];
488
+ auth: "none" | "oauth" | "apikey";
489
+ deployment: "local" | "hosted";
490
+ stateful: boolean;
491
+ }, {
492
+ language: "typescript" | "python";
493
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
494
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
495
+ auth?: "none" | "oauth" | "apikey" | undefined;
496
+ deployment?: "local" | "hosted" | undefined;
497
+ stateful?: boolean | undefined;
498
+ }>>;
427
499
  path: z.ZodOptional<z.ZodString>;
428
500
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
429
501
  step: z.ZodString;
@@ -434,7 +506,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
434
506
  }>, "many">>;
435
507
  }, "strict", z.ZodTypeAny, {
436
508
  name: string;
437
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
509
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
438
510
  path?: string | undefined;
439
511
  backendConfig?: {
440
512
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -456,6 +528,14 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
456
528
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
457
529
  hasExperimentTracking: boolean;
458
530
  } | undefined;
531
+ mcpServerConfig?: {
532
+ language: "typescript" | "python";
533
+ transport: "sse" | "stdio" | "streamable-http";
534
+ primitives: ("tools" | "resources" | "prompts")[];
535
+ auth: "none" | "oauth" | "apikey";
536
+ deployment: "local" | "hosted";
537
+ stateful: boolean;
538
+ } | undefined;
459
539
  cliConfig?: {
460
540
  interactivity: "interactive" | "hybrid" | "args-only";
461
541
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -518,7 +598,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
518
598
  }[] | undefined;
519
599
  }, {
520
600
  name: string;
521
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
601
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
522
602
  path?: string | undefined;
523
603
  backendConfig?: {
524
604
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -540,6 +620,14 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
540
620
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
541
621
  hasExperimentTracking?: boolean | undefined;
542
622
  } | undefined;
623
+ mcpServerConfig?: {
624
+ language: "typescript" | "python";
625
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
626
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
627
+ auth?: "none" | "oauth" | "apikey" | undefined;
628
+ deployment?: "local" | "hosted" | undefined;
629
+ stateful?: boolean | undefined;
630
+ } | undefined;
543
631
  cliConfig?: {
544
632
  interactivity: "interactive" | "hybrid" | "args-only";
545
633
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -602,7 +690,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
602
690
  }[] | undefined;
603
691
  }>, {
604
692
  name: string;
605
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
693
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
606
694
  path?: string | undefined;
607
695
  backendConfig?: {
608
696
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -624,6 +712,14 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
624
712
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
625
713
  hasExperimentTracking: boolean;
626
714
  } | undefined;
715
+ mcpServerConfig?: {
716
+ language: "typescript" | "python";
717
+ transport: "sse" | "stdio" | "streamable-http";
718
+ primitives: ("tools" | "resources" | "prompts")[];
719
+ auth: "none" | "oauth" | "apikey";
720
+ deployment: "local" | "hosted";
721
+ stateful: boolean;
722
+ } | undefined;
627
723
  cliConfig?: {
628
724
  interactivity: "interactive" | "hybrid" | "args-only";
629
725
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -686,7 +782,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
686
782
  }[] | undefined;
687
783
  }, {
688
784
  name: string;
689
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
785
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
690
786
  path?: string | undefined;
691
787
  backendConfig?: {
692
788
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -708,6 +804,14 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
708
804
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
709
805
  hasExperimentTracking?: boolean | undefined;
710
806
  } | undefined;
807
+ mcpServerConfig?: {
808
+ language: "typescript" | "python";
809
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
810
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
811
+ auth?: "none" | "oauth" | "apikey" | undefined;
812
+ deployment?: "local" | "hosted" | undefined;
813
+ stateful?: boolean | undefined;
814
+ } | undefined;
711
815
  cliConfig?: {
712
816
  interactivity: "interactive" | "hybrid" | "args-only";
713
817
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -772,7 +876,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
772
876
  export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
773
877
  name: z.ZodOptional<z.ZodString>;
774
878
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
775
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
879
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
776
880
  gameConfig: z.ZodOptional<z.ZodObject<{
777
881
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
778
882
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -977,10 +1081,46 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
977
1081
  }, {
978
1082
  scope?: "contracts" | undefined;
979
1083
  }>>;
1084
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1085
+ language: z.ZodEnum<["typescript", "python"]>;
1086
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
1087
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
1088
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
1089
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
1090
+ stateful: z.ZodDefault<z.ZodBoolean>;
1091
+ }, "strict", z.ZodTypeAny, {
1092
+ language: "typescript" | "python";
1093
+ transport: "sse" | "stdio" | "streamable-http";
1094
+ primitives: ("tools" | "resources" | "prompts")[];
1095
+ auth: "none" | "oauth" | "apikey";
1096
+ deployment: "local" | "hosted";
1097
+ stateful: boolean;
1098
+ }, {
1099
+ language: "typescript" | "python";
1100
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
1101
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
1102
+ auth?: "none" | "oauth" | "apikey" | undefined;
1103
+ deployment?: "local" | "hosted" | undefined;
1104
+ stateful?: boolean | undefined;
1105
+ }>, {
1106
+ language: "typescript" | "python";
1107
+ transport: "sse" | "stdio" | "streamable-http";
1108
+ primitives: ("tools" | "resources" | "prompts")[];
1109
+ auth: "none" | "oauth" | "apikey";
1110
+ deployment: "local" | "hosted";
1111
+ stateful: boolean;
1112
+ }, {
1113
+ language: "typescript" | "python";
1114
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
1115
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
1116
+ auth?: "none" | "oauth" | "apikey" | undefined;
1117
+ deployment?: "local" | "hosted" | undefined;
1118
+ stateful?: boolean | undefined;
1119
+ }>>;
980
1120
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
981
1121
  name: z.ZodString;
982
1122
  description: z.ZodOptional<z.ZodString>;
983
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
1123
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
984
1124
  backendConfig: z.ZodOptional<z.ZodObject<{
985
1125
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
986
1126
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -1185,6 +1325,42 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1185
1325
  }, {
1186
1326
  scope?: "contracts" | undefined;
1187
1327
  }>>;
1328
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1329
+ language: z.ZodEnum<["typescript", "python"]>;
1330
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
1331
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
1332
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
1333
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
1334
+ stateful: z.ZodDefault<z.ZodBoolean>;
1335
+ }, "strict", z.ZodTypeAny, {
1336
+ language: "typescript" | "python";
1337
+ transport: "sse" | "stdio" | "streamable-http";
1338
+ primitives: ("tools" | "resources" | "prompts")[];
1339
+ auth: "none" | "oauth" | "apikey";
1340
+ deployment: "local" | "hosted";
1341
+ stateful: boolean;
1342
+ }, {
1343
+ language: "typescript" | "python";
1344
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
1345
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
1346
+ auth?: "none" | "oauth" | "apikey" | undefined;
1347
+ deployment?: "local" | "hosted" | undefined;
1348
+ stateful?: boolean | undefined;
1349
+ }>, {
1350
+ language: "typescript" | "python";
1351
+ transport: "sse" | "stdio" | "streamable-http";
1352
+ primitives: ("tools" | "resources" | "prompts")[];
1353
+ auth: "none" | "oauth" | "apikey";
1354
+ deployment: "local" | "hosted";
1355
+ stateful: boolean;
1356
+ }, {
1357
+ language: "typescript" | "python";
1358
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
1359
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
1360
+ auth?: "none" | "oauth" | "apikey" | undefined;
1361
+ deployment?: "local" | "hosted" | undefined;
1362
+ stateful?: boolean | undefined;
1363
+ }>>;
1188
1364
  path: z.ZodOptional<z.ZodString>;
1189
1365
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
1190
1366
  step: z.ZodString;
@@ -1195,7 +1371,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1195
1371
  }>, "many">>;
1196
1372
  }, "strict", z.ZodTypeAny, {
1197
1373
  name: string;
1198
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
1374
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
1199
1375
  path?: string | undefined;
1200
1376
  backendConfig?: {
1201
1377
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -1217,6 +1393,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1217
1393
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
1218
1394
  hasExperimentTracking: boolean;
1219
1395
  } | undefined;
1396
+ mcpServerConfig?: {
1397
+ language: "typescript" | "python";
1398
+ transport: "sse" | "stdio" | "streamable-http";
1399
+ primitives: ("tools" | "resources" | "prompts")[];
1400
+ auth: "none" | "oauth" | "apikey";
1401
+ deployment: "local" | "hosted";
1402
+ stateful: boolean;
1403
+ } | undefined;
1220
1404
  cliConfig?: {
1221
1405
  interactivity: "interactive" | "hybrid" | "args-only";
1222
1406
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -1279,7 +1463,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1279
1463
  }[] | undefined;
1280
1464
  }, {
1281
1465
  name: string;
1282
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
1466
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
1283
1467
  path?: string | undefined;
1284
1468
  backendConfig?: {
1285
1469
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -1301,6 +1485,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1301
1485
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
1302
1486
  hasExperimentTracking?: boolean | undefined;
1303
1487
  } | undefined;
1488
+ mcpServerConfig?: {
1489
+ language: "typescript" | "python";
1490
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
1491
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
1492
+ auth?: "none" | "oauth" | "apikey" | undefined;
1493
+ deployment?: "local" | "hosted" | undefined;
1494
+ stateful?: boolean | undefined;
1495
+ } | undefined;
1304
1496
  cliConfig?: {
1305
1497
  interactivity: "interactive" | "hybrid" | "args-only";
1306
1498
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -1363,7 +1555,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1363
1555
  }[] | undefined;
1364
1556
  }>, {
1365
1557
  name: string;
1366
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
1558
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
1367
1559
  path?: string | undefined;
1368
1560
  backendConfig?: {
1369
1561
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -1385,6 +1577,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1385
1577
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
1386
1578
  hasExperimentTracking: boolean;
1387
1579
  } | undefined;
1580
+ mcpServerConfig?: {
1581
+ language: "typescript" | "python";
1582
+ transport: "sse" | "stdio" | "streamable-http";
1583
+ primitives: ("tools" | "resources" | "prompts")[];
1584
+ auth: "none" | "oauth" | "apikey";
1585
+ deployment: "local" | "hosted";
1586
+ stateful: boolean;
1587
+ } | undefined;
1388
1588
  cliConfig?: {
1389
1589
  interactivity: "interactive" | "hybrid" | "args-only";
1390
1590
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -1447,7 +1647,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1447
1647
  }[] | undefined;
1448
1648
  }, {
1449
1649
  name: string;
1450
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
1650
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
1451
1651
  path?: string | undefined;
1452
1652
  backendConfig?: {
1453
1653
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -1469,6 +1669,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1469
1669
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
1470
1670
  hasExperimentTracking?: boolean | undefined;
1471
1671
  } | undefined;
1672
+ mcpServerConfig?: {
1673
+ language: "typescript" | "python";
1674
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
1675
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
1676
+ auth?: "none" | "oauth" | "apikey" | undefined;
1677
+ deployment?: "local" | "hosted" | undefined;
1678
+ stateful?: boolean | undefined;
1679
+ } | undefined;
1472
1680
  cliConfig?: {
1473
1681
  interactivity: "interactive" | "hybrid" | "args-only";
1474
1682
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -1533,7 +1741,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1533
1741
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1534
1742
  name: z.ZodOptional<z.ZodString>;
1535
1743
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1536
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
1744
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
1537
1745
  gameConfig: z.ZodOptional<z.ZodObject<{
1538
1746
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1539
1747
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -1738,10 +1946,46 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1738
1946
  }, {
1739
1947
  scope?: "contracts" | undefined;
1740
1948
  }>>;
1949
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1950
+ language: z.ZodEnum<["typescript", "python"]>;
1951
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
1952
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
1953
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
1954
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
1955
+ stateful: z.ZodDefault<z.ZodBoolean>;
1956
+ }, "strict", z.ZodTypeAny, {
1957
+ language: "typescript" | "python";
1958
+ transport: "sse" | "stdio" | "streamable-http";
1959
+ primitives: ("tools" | "resources" | "prompts")[];
1960
+ auth: "none" | "oauth" | "apikey";
1961
+ deployment: "local" | "hosted";
1962
+ stateful: boolean;
1963
+ }, {
1964
+ language: "typescript" | "python";
1965
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
1966
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
1967
+ auth?: "none" | "oauth" | "apikey" | undefined;
1968
+ deployment?: "local" | "hosted" | undefined;
1969
+ stateful?: boolean | undefined;
1970
+ }>, {
1971
+ language: "typescript" | "python";
1972
+ transport: "sse" | "stdio" | "streamable-http";
1973
+ primitives: ("tools" | "resources" | "prompts")[];
1974
+ auth: "none" | "oauth" | "apikey";
1975
+ deployment: "local" | "hosted";
1976
+ stateful: boolean;
1977
+ }, {
1978
+ language: "typescript" | "python";
1979
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
1980
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
1981
+ auth?: "none" | "oauth" | "apikey" | undefined;
1982
+ deployment?: "local" | "hosted" | undefined;
1983
+ stateful?: boolean | undefined;
1984
+ }>>;
1741
1985
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
1742
1986
  name: z.ZodString;
1743
1987
  description: z.ZodOptional<z.ZodString>;
1744
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
1988
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
1745
1989
  backendConfig: z.ZodOptional<z.ZodObject<{
1746
1990
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
1747
1991
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -1946,6 +2190,42 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1946
2190
  }, {
1947
2191
  scope?: "contracts" | undefined;
1948
2192
  }>>;
2193
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2194
+ language: z.ZodEnum<["typescript", "python"]>;
2195
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
2196
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
2197
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
2198
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
2199
+ stateful: z.ZodDefault<z.ZodBoolean>;
2200
+ }, "strict", z.ZodTypeAny, {
2201
+ language: "typescript" | "python";
2202
+ transport: "sse" | "stdio" | "streamable-http";
2203
+ primitives: ("tools" | "resources" | "prompts")[];
2204
+ auth: "none" | "oauth" | "apikey";
2205
+ deployment: "local" | "hosted";
2206
+ stateful: boolean;
2207
+ }, {
2208
+ language: "typescript" | "python";
2209
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
2210
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
2211
+ auth?: "none" | "oauth" | "apikey" | undefined;
2212
+ deployment?: "local" | "hosted" | undefined;
2213
+ stateful?: boolean | undefined;
2214
+ }>, {
2215
+ language: "typescript" | "python";
2216
+ transport: "sse" | "stdio" | "streamable-http";
2217
+ primitives: ("tools" | "resources" | "prompts")[];
2218
+ auth: "none" | "oauth" | "apikey";
2219
+ deployment: "local" | "hosted";
2220
+ stateful: boolean;
2221
+ }, {
2222
+ language: "typescript" | "python";
2223
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
2224
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
2225
+ auth?: "none" | "oauth" | "apikey" | undefined;
2226
+ deployment?: "local" | "hosted" | undefined;
2227
+ stateful?: boolean | undefined;
2228
+ }>>;
1949
2229
  path: z.ZodOptional<z.ZodString>;
1950
2230
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
1951
2231
  step: z.ZodString;
@@ -1956,7 +2236,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1956
2236
  }>, "many">>;
1957
2237
  }, "strict", z.ZodTypeAny, {
1958
2238
  name: string;
1959
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
2239
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
1960
2240
  path?: string | undefined;
1961
2241
  backendConfig?: {
1962
2242
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -1978,6 +2258,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
1978
2258
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
1979
2259
  hasExperimentTracking: boolean;
1980
2260
  } | undefined;
2261
+ mcpServerConfig?: {
2262
+ language: "typescript" | "python";
2263
+ transport: "sse" | "stdio" | "streamable-http";
2264
+ primitives: ("tools" | "resources" | "prompts")[];
2265
+ auth: "none" | "oauth" | "apikey";
2266
+ deployment: "local" | "hosted";
2267
+ stateful: boolean;
2268
+ } | undefined;
1981
2269
  cliConfig?: {
1982
2270
  interactivity: "interactive" | "hybrid" | "args-only";
1983
2271
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -2040,7 +2328,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2040
2328
  }[] | undefined;
2041
2329
  }, {
2042
2330
  name: string;
2043
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
2331
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
2044
2332
  path?: string | undefined;
2045
2333
  backendConfig?: {
2046
2334
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -2062,6 +2350,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2062
2350
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
2063
2351
  hasExperimentTracking?: boolean | undefined;
2064
2352
  } | undefined;
2353
+ mcpServerConfig?: {
2354
+ language: "typescript" | "python";
2355
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
2356
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
2357
+ auth?: "none" | "oauth" | "apikey" | undefined;
2358
+ deployment?: "local" | "hosted" | undefined;
2359
+ stateful?: boolean | undefined;
2360
+ } | undefined;
2065
2361
  cliConfig?: {
2066
2362
  interactivity: "interactive" | "hybrid" | "args-only";
2067
2363
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -2124,7 +2420,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2124
2420
  }[] | undefined;
2125
2421
  }>, {
2126
2422
  name: string;
2127
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
2423
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
2128
2424
  path?: string | undefined;
2129
2425
  backendConfig?: {
2130
2426
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -2146,6 +2442,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2146
2442
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
2147
2443
  hasExperimentTracking: boolean;
2148
2444
  } | undefined;
2445
+ mcpServerConfig?: {
2446
+ language: "typescript" | "python";
2447
+ transport: "sse" | "stdio" | "streamable-http";
2448
+ primitives: ("tools" | "resources" | "prompts")[];
2449
+ auth: "none" | "oauth" | "apikey";
2450
+ deployment: "local" | "hosted";
2451
+ stateful: boolean;
2452
+ } | undefined;
2149
2453
  cliConfig?: {
2150
2454
  interactivity: "interactive" | "hybrid" | "args-only";
2151
2455
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -2208,7 +2512,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2208
2512
  }[] | undefined;
2209
2513
  }, {
2210
2514
  name: string;
2211
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
2515
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
2212
2516
  path?: string | undefined;
2213
2517
  backendConfig?: {
2214
2518
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -2230,6 +2534,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2230
2534
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
2231
2535
  hasExperimentTracking?: boolean | undefined;
2232
2536
  } | undefined;
2537
+ mcpServerConfig?: {
2538
+ language: "typescript" | "python";
2539
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
2540
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
2541
+ auth?: "none" | "oauth" | "apikey" | undefined;
2542
+ deployment?: "local" | "hosted" | undefined;
2543
+ stateful?: boolean | undefined;
2544
+ } | undefined;
2233
2545
  cliConfig?: {
2234
2546
  interactivity: "interactive" | "hybrid" | "args-only";
2235
2547
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -2294,7 +2606,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2294
2606
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2295
2607
  name: z.ZodOptional<z.ZodString>;
2296
2608
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
2297
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
2609
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
2298
2610
  gameConfig: z.ZodOptional<z.ZodObject<{
2299
2611
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
2300
2612
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -2499,10 +2811,46 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2499
2811
  }, {
2500
2812
  scope?: "contracts" | undefined;
2501
2813
  }>>;
2814
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2815
+ language: z.ZodEnum<["typescript", "python"]>;
2816
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
2817
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
2818
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
2819
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
2820
+ stateful: z.ZodDefault<z.ZodBoolean>;
2821
+ }, "strict", z.ZodTypeAny, {
2822
+ language: "typescript" | "python";
2823
+ transport: "sse" | "stdio" | "streamable-http";
2824
+ primitives: ("tools" | "resources" | "prompts")[];
2825
+ auth: "none" | "oauth" | "apikey";
2826
+ deployment: "local" | "hosted";
2827
+ stateful: boolean;
2828
+ }, {
2829
+ language: "typescript" | "python";
2830
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
2831
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
2832
+ auth?: "none" | "oauth" | "apikey" | undefined;
2833
+ deployment?: "local" | "hosted" | undefined;
2834
+ stateful?: boolean | undefined;
2835
+ }>, {
2836
+ language: "typescript" | "python";
2837
+ transport: "sse" | "stdio" | "streamable-http";
2838
+ primitives: ("tools" | "resources" | "prompts")[];
2839
+ auth: "none" | "oauth" | "apikey";
2840
+ deployment: "local" | "hosted";
2841
+ stateful: boolean;
2842
+ }, {
2843
+ language: "typescript" | "python";
2844
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
2845
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
2846
+ auth?: "none" | "oauth" | "apikey" | undefined;
2847
+ deployment?: "local" | "hosted" | undefined;
2848
+ stateful?: boolean | undefined;
2849
+ }>>;
2502
2850
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
2503
2851
  name: z.ZodString;
2504
2852
  description: z.ZodOptional<z.ZodString>;
2505
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
2853
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
2506
2854
  backendConfig: z.ZodOptional<z.ZodObject<{
2507
2855
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
2508
2856
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -2707,6 +3055,42 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2707
3055
  }, {
2708
3056
  scope?: "contracts" | undefined;
2709
3057
  }>>;
3058
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3059
+ language: z.ZodEnum<["typescript", "python"]>;
3060
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
3061
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
3062
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
3063
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
3064
+ stateful: z.ZodDefault<z.ZodBoolean>;
3065
+ }, "strict", z.ZodTypeAny, {
3066
+ language: "typescript" | "python";
3067
+ transport: "sse" | "stdio" | "streamable-http";
3068
+ primitives: ("tools" | "resources" | "prompts")[];
3069
+ auth: "none" | "oauth" | "apikey";
3070
+ deployment: "local" | "hosted";
3071
+ stateful: boolean;
3072
+ }, {
3073
+ language: "typescript" | "python";
3074
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
3075
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
3076
+ auth?: "none" | "oauth" | "apikey" | undefined;
3077
+ deployment?: "local" | "hosted" | undefined;
3078
+ stateful?: boolean | undefined;
3079
+ }>, {
3080
+ language: "typescript" | "python";
3081
+ transport: "sse" | "stdio" | "streamable-http";
3082
+ primitives: ("tools" | "resources" | "prompts")[];
3083
+ auth: "none" | "oauth" | "apikey";
3084
+ deployment: "local" | "hosted";
3085
+ stateful: boolean;
3086
+ }, {
3087
+ language: "typescript" | "python";
3088
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
3089
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
3090
+ auth?: "none" | "oauth" | "apikey" | undefined;
3091
+ deployment?: "local" | "hosted" | undefined;
3092
+ stateful?: boolean | undefined;
3093
+ }>>;
2710
3094
  path: z.ZodOptional<z.ZodString>;
2711
3095
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
2712
3096
  step: z.ZodString;
@@ -2717,7 +3101,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2717
3101
  }>, "many">>;
2718
3102
  }, "strict", z.ZodTypeAny, {
2719
3103
  name: string;
2720
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
3104
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
2721
3105
  path?: string | undefined;
2722
3106
  backendConfig?: {
2723
3107
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -2739,6 +3123,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2739
3123
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
2740
3124
  hasExperimentTracking: boolean;
2741
3125
  } | undefined;
3126
+ mcpServerConfig?: {
3127
+ language: "typescript" | "python";
3128
+ transport: "sse" | "stdio" | "streamable-http";
3129
+ primitives: ("tools" | "resources" | "prompts")[];
3130
+ auth: "none" | "oauth" | "apikey";
3131
+ deployment: "local" | "hosted";
3132
+ stateful: boolean;
3133
+ } | undefined;
2742
3134
  cliConfig?: {
2743
3135
  interactivity: "interactive" | "hybrid" | "args-only";
2744
3136
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -2801,7 +3193,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2801
3193
  }[] | undefined;
2802
3194
  }, {
2803
3195
  name: string;
2804
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
3196
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
2805
3197
  path?: string | undefined;
2806
3198
  backendConfig?: {
2807
3199
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -2823,6 +3215,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2823
3215
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
2824
3216
  hasExperimentTracking?: boolean | undefined;
2825
3217
  } | undefined;
3218
+ mcpServerConfig?: {
3219
+ language: "typescript" | "python";
3220
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
3221
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
3222
+ auth?: "none" | "oauth" | "apikey" | undefined;
3223
+ deployment?: "local" | "hosted" | undefined;
3224
+ stateful?: boolean | undefined;
3225
+ } | undefined;
2826
3226
  cliConfig?: {
2827
3227
  interactivity: "interactive" | "hybrid" | "args-only";
2828
3228
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -2885,7 +3285,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2885
3285
  }[] | undefined;
2886
3286
  }>, {
2887
3287
  name: string;
2888
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
3288
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
2889
3289
  path?: string | undefined;
2890
3290
  backendConfig?: {
2891
3291
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -2907,6 +3307,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2907
3307
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
2908
3308
  hasExperimentTracking: boolean;
2909
3309
  } | undefined;
3310
+ mcpServerConfig?: {
3311
+ language: "typescript" | "python";
3312
+ transport: "sse" | "stdio" | "streamable-http";
3313
+ primitives: ("tools" | "resources" | "prompts")[];
3314
+ auth: "none" | "oauth" | "apikey";
3315
+ deployment: "local" | "hosted";
3316
+ stateful: boolean;
3317
+ } | undefined;
2910
3318
  cliConfig?: {
2911
3319
  interactivity: "interactive" | "hybrid" | "args-only";
2912
3320
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -2969,7 +3377,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2969
3377
  }[] | undefined;
2970
3378
  }, {
2971
3379
  name: string;
2972
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
3380
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
2973
3381
  path?: string | undefined;
2974
3382
  backendConfig?: {
2975
3383
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -2991,6 +3399,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
2991
3399
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
2992
3400
  hasExperimentTracking?: boolean | undefined;
2993
3401
  } | undefined;
3402
+ mcpServerConfig?: {
3403
+ language: "typescript" | "python";
3404
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
3405
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
3406
+ auth?: "none" | "oauth" | "apikey" | undefined;
3407
+ deployment?: "local" | "hosted" | undefined;
3408
+ stateful?: boolean | undefined;
3409
+ } | undefined;
2994
3410
  cliConfig?: {
2995
3411
  interactivity: "interactive" | "hybrid" | "args-only";
2996
3412
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -3055,7 +3471,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3055
3471
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
3056
3472
  name: z.ZodOptional<z.ZodString>;
3057
3473
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
3058
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
3474
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
3059
3475
  gameConfig: z.ZodOptional<z.ZodObject<{
3060
3476
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
3061
3477
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -3260,10 +3676,46 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3260
3676
  }, {
3261
3677
  scope?: "contracts" | undefined;
3262
3678
  }>>;
3679
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3680
+ language: z.ZodEnum<["typescript", "python"]>;
3681
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
3682
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
3683
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
3684
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
3685
+ stateful: z.ZodDefault<z.ZodBoolean>;
3686
+ }, "strict", z.ZodTypeAny, {
3687
+ language: "typescript" | "python";
3688
+ transport: "sse" | "stdio" | "streamable-http";
3689
+ primitives: ("tools" | "resources" | "prompts")[];
3690
+ auth: "none" | "oauth" | "apikey";
3691
+ deployment: "local" | "hosted";
3692
+ stateful: boolean;
3693
+ }, {
3694
+ language: "typescript" | "python";
3695
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
3696
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
3697
+ auth?: "none" | "oauth" | "apikey" | undefined;
3698
+ deployment?: "local" | "hosted" | undefined;
3699
+ stateful?: boolean | undefined;
3700
+ }>, {
3701
+ language: "typescript" | "python";
3702
+ transport: "sse" | "stdio" | "streamable-http";
3703
+ primitives: ("tools" | "resources" | "prompts")[];
3704
+ auth: "none" | "oauth" | "apikey";
3705
+ deployment: "local" | "hosted";
3706
+ stateful: boolean;
3707
+ }, {
3708
+ language: "typescript" | "python";
3709
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
3710
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
3711
+ auth?: "none" | "oauth" | "apikey" | undefined;
3712
+ deployment?: "local" | "hosted" | undefined;
3713
+ stateful?: boolean | undefined;
3714
+ }>>;
3263
3715
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
3264
3716
  name: z.ZodString;
3265
3717
  description: z.ZodOptional<z.ZodString>;
3266
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
3718
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
3267
3719
  backendConfig: z.ZodOptional<z.ZodObject<{
3268
3720
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
3269
3721
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -3468,6 +3920,42 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3468
3920
  }, {
3469
3921
  scope?: "contracts" | undefined;
3470
3922
  }>>;
3923
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3924
+ language: z.ZodEnum<["typescript", "python"]>;
3925
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
3926
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
3927
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
3928
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
3929
+ stateful: z.ZodDefault<z.ZodBoolean>;
3930
+ }, "strict", z.ZodTypeAny, {
3931
+ language: "typescript" | "python";
3932
+ transport: "sse" | "stdio" | "streamable-http";
3933
+ primitives: ("tools" | "resources" | "prompts")[];
3934
+ auth: "none" | "oauth" | "apikey";
3935
+ deployment: "local" | "hosted";
3936
+ stateful: boolean;
3937
+ }, {
3938
+ language: "typescript" | "python";
3939
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
3940
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
3941
+ auth?: "none" | "oauth" | "apikey" | undefined;
3942
+ deployment?: "local" | "hosted" | undefined;
3943
+ stateful?: boolean | undefined;
3944
+ }>, {
3945
+ language: "typescript" | "python";
3946
+ transport: "sse" | "stdio" | "streamable-http";
3947
+ primitives: ("tools" | "resources" | "prompts")[];
3948
+ auth: "none" | "oauth" | "apikey";
3949
+ deployment: "local" | "hosted";
3950
+ stateful: boolean;
3951
+ }, {
3952
+ language: "typescript" | "python";
3953
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
3954
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
3955
+ auth?: "none" | "oauth" | "apikey" | undefined;
3956
+ deployment?: "local" | "hosted" | undefined;
3957
+ stateful?: boolean | undefined;
3958
+ }>>;
3471
3959
  path: z.ZodOptional<z.ZodString>;
3472
3960
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
3473
3961
  step: z.ZodString;
@@ -3478,7 +3966,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3478
3966
  }>, "many">>;
3479
3967
  }, "strict", z.ZodTypeAny, {
3480
3968
  name: string;
3481
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
3969
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
3482
3970
  path?: string | undefined;
3483
3971
  backendConfig?: {
3484
3972
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -3500,6 +3988,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3500
3988
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
3501
3989
  hasExperimentTracking: boolean;
3502
3990
  } | undefined;
3991
+ mcpServerConfig?: {
3992
+ language: "typescript" | "python";
3993
+ transport: "sse" | "stdio" | "streamable-http";
3994
+ primitives: ("tools" | "resources" | "prompts")[];
3995
+ auth: "none" | "oauth" | "apikey";
3996
+ deployment: "local" | "hosted";
3997
+ stateful: boolean;
3998
+ } | undefined;
3503
3999
  cliConfig?: {
3504
4000
  interactivity: "interactive" | "hybrid" | "args-only";
3505
4001
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -3562,7 +4058,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3562
4058
  }[] | undefined;
3563
4059
  }, {
3564
4060
  name: string;
3565
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
4061
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
3566
4062
  path?: string | undefined;
3567
4063
  backendConfig?: {
3568
4064
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -3584,6 +4080,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3584
4080
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
3585
4081
  hasExperimentTracking?: boolean | undefined;
3586
4082
  } | undefined;
4083
+ mcpServerConfig?: {
4084
+ language: "typescript" | "python";
4085
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
4086
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
4087
+ auth?: "none" | "oauth" | "apikey" | undefined;
4088
+ deployment?: "local" | "hosted" | undefined;
4089
+ stateful?: boolean | undefined;
4090
+ } | undefined;
3587
4091
  cliConfig?: {
3588
4092
  interactivity: "interactive" | "hybrid" | "args-only";
3589
4093
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -3646,7 +4150,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3646
4150
  }[] | undefined;
3647
4151
  }>, {
3648
4152
  name: string;
3649
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
4153
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
3650
4154
  path?: string | undefined;
3651
4155
  backendConfig?: {
3652
4156
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -3668,6 +4172,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3668
4172
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
3669
4173
  hasExperimentTracking: boolean;
3670
4174
  } | undefined;
4175
+ mcpServerConfig?: {
4176
+ language: "typescript" | "python";
4177
+ transport: "sse" | "stdio" | "streamable-http";
4178
+ primitives: ("tools" | "resources" | "prompts")[];
4179
+ auth: "none" | "oauth" | "apikey";
4180
+ deployment: "local" | "hosted";
4181
+ stateful: boolean;
4182
+ } | undefined;
3671
4183
  cliConfig?: {
3672
4184
  interactivity: "interactive" | "hybrid" | "args-only";
3673
4185
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -3730,7 +4242,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3730
4242
  }[] | undefined;
3731
4243
  }, {
3732
4244
  name: string;
3733
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
4245
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
3734
4246
  path?: string | undefined;
3735
4247
  backendConfig?: {
3736
4248
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -3752,6 +4264,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3752
4264
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
3753
4265
  hasExperimentTracking?: boolean | undefined;
3754
4266
  } | undefined;
4267
+ mcpServerConfig?: {
4268
+ language: "typescript" | "python";
4269
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
4270
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
4271
+ auth?: "none" | "oauth" | "apikey" | undefined;
4272
+ deployment?: "local" | "hosted" | undefined;
4273
+ stateful?: boolean | undefined;
4274
+ } | undefined;
3755
4275
  cliConfig?: {
3756
4276
  interactivity: "interactive" | "hybrid" | "args-only";
3757
4277
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -3816,7 +4336,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
3816
4336
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3817
4337
  name: z.ZodOptional<z.ZodString>;
3818
4338
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
3819
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
4339
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
3820
4340
  gameConfig: z.ZodOptional<z.ZodObject<{
3821
4341
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
3822
4342
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -4021,10 +4541,46 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4021
4541
  }, {
4022
4542
  scope?: "contracts" | undefined;
4023
4543
  }>>;
4544
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
4545
+ language: z.ZodEnum<["typescript", "python"]>;
4546
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
4547
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
4548
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
4549
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
4550
+ stateful: z.ZodDefault<z.ZodBoolean>;
4551
+ }, "strict", z.ZodTypeAny, {
4552
+ language: "typescript" | "python";
4553
+ transport: "sse" | "stdio" | "streamable-http";
4554
+ primitives: ("tools" | "resources" | "prompts")[];
4555
+ auth: "none" | "oauth" | "apikey";
4556
+ deployment: "local" | "hosted";
4557
+ stateful: boolean;
4558
+ }, {
4559
+ language: "typescript" | "python";
4560
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
4561
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
4562
+ auth?: "none" | "oauth" | "apikey" | undefined;
4563
+ deployment?: "local" | "hosted" | undefined;
4564
+ stateful?: boolean | undefined;
4565
+ }>, {
4566
+ language: "typescript" | "python";
4567
+ transport: "sse" | "stdio" | "streamable-http";
4568
+ primitives: ("tools" | "resources" | "prompts")[];
4569
+ auth: "none" | "oauth" | "apikey";
4570
+ deployment: "local" | "hosted";
4571
+ stateful: boolean;
4572
+ }, {
4573
+ language: "typescript" | "python";
4574
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
4575
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
4576
+ auth?: "none" | "oauth" | "apikey" | undefined;
4577
+ deployment?: "local" | "hosted" | undefined;
4578
+ stateful?: boolean | undefined;
4579
+ }>>;
4024
4580
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
4025
4581
  name: z.ZodString;
4026
4582
  description: z.ZodOptional<z.ZodString>;
4027
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
4583
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
4028
4584
  backendConfig: z.ZodOptional<z.ZodObject<{
4029
4585
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
4030
4586
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -4229,6 +4785,42 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4229
4785
  }, {
4230
4786
  scope?: "contracts" | undefined;
4231
4787
  }>>;
4788
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
4789
+ language: z.ZodEnum<["typescript", "python"]>;
4790
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
4791
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
4792
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
4793
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
4794
+ stateful: z.ZodDefault<z.ZodBoolean>;
4795
+ }, "strict", z.ZodTypeAny, {
4796
+ language: "typescript" | "python";
4797
+ transport: "sse" | "stdio" | "streamable-http";
4798
+ primitives: ("tools" | "resources" | "prompts")[];
4799
+ auth: "none" | "oauth" | "apikey";
4800
+ deployment: "local" | "hosted";
4801
+ stateful: boolean;
4802
+ }, {
4803
+ language: "typescript" | "python";
4804
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
4805
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
4806
+ auth?: "none" | "oauth" | "apikey" | undefined;
4807
+ deployment?: "local" | "hosted" | undefined;
4808
+ stateful?: boolean | undefined;
4809
+ }>, {
4810
+ language: "typescript" | "python";
4811
+ transport: "sse" | "stdio" | "streamable-http";
4812
+ primitives: ("tools" | "resources" | "prompts")[];
4813
+ auth: "none" | "oauth" | "apikey";
4814
+ deployment: "local" | "hosted";
4815
+ stateful: boolean;
4816
+ }, {
4817
+ language: "typescript" | "python";
4818
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
4819
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
4820
+ auth?: "none" | "oauth" | "apikey" | undefined;
4821
+ deployment?: "local" | "hosted" | undefined;
4822
+ stateful?: boolean | undefined;
4823
+ }>>;
4232
4824
  path: z.ZodOptional<z.ZodString>;
4233
4825
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
4234
4826
  step: z.ZodString;
@@ -4239,7 +4831,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4239
4831
  }>, "many">>;
4240
4832
  }, "strict", z.ZodTypeAny, {
4241
4833
  name: string;
4242
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
4834
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
4243
4835
  path?: string | undefined;
4244
4836
  backendConfig?: {
4245
4837
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -4261,6 +4853,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4261
4853
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
4262
4854
  hasExperimentTracking: boolean;
4263
4855
  } | undefined;
4856
+ mcpServerConfig?: {
4857
+ language: "typescript" | "python";
4858
+ transport: "sse" | "stdio" | "streamable-http";
4859
+ primitives: ("tools" | "resources" | "prompts")[];
4860
+ auth: "none" | "oauth" | "apikey";
4861
+ deployment: "local" | "hosted";
4862
+ stateful: boolean;
4863
+ } | undefined;
4264
4864
  cliConfig?: {
4265
4865
  interactivity: "interactive" | "hybrid" | "args-only";
4266
4866
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -4323,7 +4923,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4323
4923
  }[] | undefined;
4324
4924
  }, {
4325
4925
  name: string;
4326
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
4926
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
4327
4927
  path?: string | undefined;
4328
4928
  backendConfig?: {
4329
4929
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -4345,6 +4945,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4345
4945
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
4346
4946
  hasExperimentTracking?: boolean | undefined;
4347
4947
  } | undefined;
4948
+ mcpServerConfig?: {
4949
+ language: "typescript" | "python";
4950
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
4951
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
4952
+ auth?: "none" | "oauth" | "apikey" | undefined;
4953
+ deployment?: "local" | "hosted" | undefined;
4954
+ stateful?: boolean | undefined;
4955
+ } | undefined;
4348
4956
  cliConfig?: {
4349
4957
  interactivity: "interactive" | "hybrid" | "args-only";
4350
4958
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -4407,7 +5015,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4407
5015
  }[] | undefined;
4408
5016
  }>, {
4409
5017
  name: string;
4410
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
5018
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
4411
5019
  path?: string | undefined;
4412
5020
  backendConfig?: {
4413
5021
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -4429,6 +5037,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4429
5037
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
4430
5038
  hasExperimentTracking: boolean;
4431
5039
  } | undefined;
5040
+ mcpServerConfig?: {
5041
+ language: "typescript" | "python";
5042
+ transport: "sse" | "stdio" | "streamable-http";
5043
+ primitives: ("tools" | "resources" | "prompts")[];
5044
+ auth: "none" | "oauth" | "apikey";
5045
+ deployment: "local" | "hosted";
5046
+ stateful: boolean;
5047
+ } | undefined;
4432
5048
  cliConfig?: {
4433
5049
  interactivity: "interactive" | "hybrid" | "args-only";
4434
5050
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -4491,7 +5107,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4491
5107
  }[] | undefined;
4492
5108
  }, {
4493
5109
  name: string;
4494
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
5110
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
4495
5111
  path?: string | undefined;
4496
5112
  backendConfig?: {
4497
5113
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -4513,6 +5129,14 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
4513
5129
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
4514
5130
  hasExperimentTracking?: boolean | undefined;
4515
5131
  } | undefined;
5132
+ mcpServerConfig?: {
5133
+ language: "typescript" | "python";
5134
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
5135
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
5136
+ auth?: "none" | "oauth" | "apikey" | undefined;
5137
+ deployment?: "local" | "hosted" | undefined;
5138
+ stateful?: boolean | undefined;
5139
+ } | undefined;
4516
5140
  cliConfig?: {
4517
5141
  interactivity: "interactive" | "hybrid" | "args-only";
4518
5142
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -4607,7 +5231,7 @@ export declare const ConfigSchema: z.ZodObject<{
4607
5231
  project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
4608
5232
  name: z.ZodOptional<z.ZodString>;
4609
5233
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
4610
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
5234
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
4611
5235
  gameConfig: z.ZodOptional<z.ZodObject<{
4612
5236
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
4613
5237
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -4812,10 +5436,46 @@ export declare const ConfigSchema: z.ZodObject<{
4812
5436
  }, {
4813
5437
  scope?: "contracts" | undefined;
4814
5438
  }>>;
5439
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
5440
+ language: z.ZodEnum<["typescript", "python"]>;
5441
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
5442
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
5443
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
5444
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
5445
+ stateful: z.ZodDefault<z.ZodBoolean>;
5446
+ }, "strict", z.ZodTypeAny, {
5447
+ language: "typescript" | "python";
5448
+ transport: "sse" | "stdio" | "streamable-http";
5449
+ primitives: ("tools" | "resources" | "prompts")[];
5450
+ auth: "none" | "oauth" | "apikey";
5451
+ deployment: "local" | "hosted";
5452
+ stateful: boolean;
5453
+ }, {
5454
+ language: "typescript" | "python";
5455
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
5456
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
5457
+ auth?: "none" | "oauth" | "apikey" | undefined;
5458
+ deployment?: "local" | "hosted" | undefined;
5459
+ stateful?: boolean | undefined;
5460
+ }>, {
5461
+ language: "typescript" | "python";
5462
+ transport: "sse" | "stdio" | "streamable-http";
5463
+ primitives: ("tools" | "resources" | "prompts")[];
5464
+ auth: "none" | "oauth" | "apikey";
5465
+ deployment: "local" | "hosted";
5466
+ stateful: boolean;
5467
+ }, {
5468
+ language: "typescript" | "python";
5469
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
5470
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
5471
+ auth?: "none" | "oauth" | "apikey" | undefined;
5472
+ deployment?: "local" | "hosted" | undefined;
5473
+ stateful?: boolean | undefined;
5474
+ }>>;
4815
5475
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
4816
5476
  name: z.ZodString;
4817
5477
  description: z.ZodOptional<z.ZodString>;
4818
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
5478
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
4819
5479
  backendConfig: z.ZodOptional<z.ZodObject<{
4820
5480
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
4821
5481
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -5020,6 +5680,42 @@ export declare const ConfigSchema: z.ZodObject<{
5020
5680
  }, {
5021
5681
  scope?: "contracts" | undefined;
5022
5682
  }>>;
5683
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
5684
+ language: z.ZodEnum<["typescript", "python"]>;
5685
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
5686
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
5687
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
5688
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
5689
+ stateful: z.ZodDefault<z.ZodBoolean>;
5690
+ }, "strict", z.ZodTypeAny, {
5691
+ language: "typescript" | "python";
5692
+ transport: "sse" | "stdio" | "streamable-http";
5693
+ primitives: ("tools" | "resources" | "prompts")[];
5694
+ auth: "none" | "oauth" | "apikey";
5695
+ deployment: "local" | "hosted";
5696
+ stateful: boolean;
5697
+ }, {
5698
+ language: "typescript" | "python";
5699
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
5700
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
5701
+ auth?: "none" | "oauth" | "apikey" | undefined;
5702
+ deployment?: "local" | "hosted" | undefined;
5703
+ stateful?: boolean | undefined;
5704
+ }>, {
5705
+ language: "typescript" | "python";
5706
+ transport: "sse" | "stdio" | "streamable-http";
5707
+ primitives: ("tools" | "resources" | "prompts")[];
5708
+ auth: "none" | "oauth" | "apikey";
5709
+ deployment: "local" | "hosted";
5710
+ stateful: boolean;
5711
+ }, {
5712
+ language: "typescript" | "python";
5713
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
5714
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
5715
+ auth?: "none" | "oauth" | "apikey" | undefined;
5716
+ deployment?: "local" | "hosted" | undefined;
5717
+ stateful?: boolean | undefined;
5718
+ }>>;
5023
5719
  path: z.ZodOptional<z.ZodString>;
5024
5720
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
5025
5721
  step: z.ZodString;
@@ -5030,7 +5726,7 @@ export declare const ConfigSchema: z.ZodObject<{
5030
5726
  }>, "many">>;
5031
5727
  }, "strict", z.ZodTypeAny, {
5032
5728
  name: string;
5033
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
5729
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
5034
5730
  path?: string | undefined;
5035
5731
  backendConfig?: {
5036
5732
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -5052,6 +5748,14 @@ export declare const ConfigSchema: z.ZodObject<{
5052
5748
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
5053
5749
  hasExperimentTracking: boolean;
5054
5750
  } | undefined;
5751
+ mcpServerConfig?: {
5752
+ language: "typescript" | "python";
5753
+ transport: "sse" | "stdio" | "streamable-http";
5754
+ primitives: ("tools" | "resources" | "prompts")[];
5755
+ auth: "none" | "oauth" | "apikey";
5756
+ deployment: "local" | "hosted";
5757
+ stateful: boolean;
5758
+ } | undefined;
5055
5759
  cliConfig?: {
5056
5760
  interactivity: "interactive" | "hybrid" | "args-only";
5057
5761
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -5114,7 +5818,7 @@ export declare const ConfigSchema: z.ZodObject<{
5114
5818
  }[] | undefined;
5115
5819
  }, {
5116
5820
  name: string;
5117
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
5821
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
5118
5822
  path?: string | undefined;
5119
5823
  backendConfig?: {
5120
5824
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -5136,6 +5840,14 @@ export declare const ConfigSchema: z.ZodObject<{
5136
5840
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
5137
5841
  hasExperimentTracking?: boolean | undefined;
5138
5842
  } | undefined;
5843
+ mcpServerConfig?: {
5844
+ language: "typescript" | "python";
5845
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
5846
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
5847
+ auth?: "none" | "oauth" | "apikey" | undefined;
5848
+ deployment?: "local" | "hosted" | undefined;
5849
+ stateful?: boolean | undefined;
5850
+ } | undefined;
5139
5851
  cliConfig?: {
5140
5852
  interactivity: "interactive" | "hybrid" | "args-only";
5141
5853
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -5198,7 +5910,7 @@ export declare const ConfigSchema: z.ZodObject<{
5198
5910
  }[] | undefined;
5199
5911
  }>, {
5200
5912
  name: string;
5201
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
5913
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
5202
5914
  path?: string | undefined;
5203
5915
  backendConfig?: {
5204
5916
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -5220,6 +5932,14 @@ export declare const ConfigSchema: z.ZodObject<{
5220
5932
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
5221
5933
  hasExperimentTracking: boolean;
5222
5934
  } | undefined;
5935
+ mcpServerConfig?: {
5936
+ language: "typescript" | "python";
5937
+ transport: "sse" | "stdio" | "streamable-http";
5938
+ primitives: ("tools" | "resources" | "prompts")[];
5939
+ auth: "none" | "oauth" | "apikey";
5940
+ deployment: "local" | "hosted";
5941
+ stateful: boolean;
5942
+ } | undefined;
5223
5943
  cliConfig?: {
5224
5944
  interactivity: "interactive" | "hybrid" | "args-only";
5225
5945
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -5282,7 +6002,7 @@ export declare const ConfigSchema: z.ZodObject<{
5282
6002
  }[] | undefined;
5283
6003
  }, {
5284
6004
  name: string;
5285
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
6005
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
5286
6006
  path?: string | undefined;
5287
6007
  backendConfig?: {
5288
6008
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -5304,6 +6024,14 @@ export declare const ConfigSchema: z.ZodObject<{
5304
6024
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
5305
6025
  hasExperimentTracking?: boolean | undefined;
5306
6026
  } | undefined;
6027
+ mcpServerConfig?: {
6028
+ language: "typescript" | "python";
6029
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
6030
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
6031
+ auth?: "none" | "oauth" | "apikey" | undefined;
6032
+ deployment?: "local" | "hosted" | undefined;
6033
+ stateful?: boolean | undefined;
6034
+ } | undefined;
5307
6035
  cliConfig?: {
5308
6036
  interactivity: "interactive" | "hybrid" | "args-only";
5309
6037
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -5368,7 +6096,7 @@ export declare const ConfigSchema: z.ZodObject<{
5368
6096
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
5369
6097
  name: z.ZodOptional<z.ZodString>;
5370
6098
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
5371
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
6099
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
5372
6100
  gameConfig: z.ZodOptional<z.ZodObject<{
5373
6101
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
5374
6102
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -5573,10 +6301,46 @@ export declare const ConfigSchema: z.ZodObject<{
5573
6301
  }, {
5574
6302
  scope?: "contracts" | undefined;
5575
6303
  }>>;
6304
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
6305
+ language: z.ZodEnum<["typescript", "python"]>;
6306
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
6307
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
6308
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
6309
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
6310
+ stateful: z.ZodDefault<z.ZodBoolean>;
6311
+ }, "strict", z.ZodTypeAny, {
6312
+ language: "typescript" | "python";
6313
+ transport: "sse" | "stdio" | "streamable-http";
6314
+ primitives: ("tools" | "resources" | "prompts")[];
6315
+ auth: "none" | "oauth" | "apikey";
6316
+ deployment: "local" | "hosted";
6317
+ stateful: boolean;
6318
+ }, {
6319
+ language: "typescript" | "python";
6320
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
6321
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
6322
+ auth?: "none" | "oauth" | "apikey" | undefined;
6323
+ deployment?: "local" | "hosted" | undefined;
6324
+ stateful?: boolean | undefined;
6325
+ }>, {
6326
+ language: "typescript" | "python";
6327
+ transport: "sse" | "stdio" | "streamable-http";
6328
+ primitives: ("tools" | "resources" | "prompts")[];
6329
+ auth: "none" | "oauth" | "apikey";
6330
+ deployment: "local" | "hosted";
6331
+ stateful: boolean;
6332
+ }, {
6333
+ language: "typescript" | "python";
6334
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
6335
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
6336
+ auth?: "none" | "oauth" | "apikey" | undefined;
6337
+ deployment?: "local" | "hosted" | undefined;
6338
+ stateful?: boolean | undefined;
6339
+ }>>;
5576
6340
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
5577
6341
  name: z.ZodString;
5578
6342
  description: z.ZodOptional<z.ZodString>;
5579
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
6343
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
5580
6344
  backendConfig: z.ZodOptional<z.ZodObject<{
5581
6345
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
5582
6346
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -5781,6 +6545,42 @@ export declare const ConfigSchema: z.ZodObject<{
5781
6545
  }, {
5782
6546
  scope?: "contracts" | undefined;
5783
6547
  }>>;
6548
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
6549
+ language: z.ZodEnum<["typescript", "python"]>;
6550
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
6551
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
6552
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
6553
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
6554
+ stateful: z.ZodDefault<z.ZodBoolean>;
6555
+ }, "strict", z.ZodTypeAny, {
6556
+ language: "typescript" | "python";
6557
+ transport: "sse" | "stdio" | "streamable-http";
6558
+ primitives: ("tools" | "resources" | "prompts")[];
6559
+ auth: "none" | "oauth" | "apikey";
6560
+ deployment: "local" | "hosted";
6561
+ stateful: boolean;
6562
+ }, {
6563
+ language: "typescript" | "python";
6564
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
6565
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
6566
+ auth?: "none" | "oauth" | "apikey" | undefined;
6567
+ deployment?: "local" | "hosted" | undefined;
6568
+ stateful?: boolean | undefined;
6569
+ }>, {
6570
+ language: "typescript" | "python";
6571
+ transport: "sse" | "stdio" | "streamable-http";
6572
+ primitives: ("tools" | "resources" | "prompts")[];
6573
+ auth: "none" | "oauth" | "apikey";
6574
+ deployment: "local" | "hosted";
6575
+ stateful: boolean;
6576
+ }, {
6577
+ language: "typescript" | "python";
6578
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
6579
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
6580
+ auth?: "none" | "oauth" | "apikey" | undefined;
6581
+ deployment?: "local" | "hosted" | undefined;
6582
+ stateful?: boolean | undefined;
6583
+ }>>;
5784
6584
  path: z.ZodOptional<z.ZodString>;
5785
6585
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
5786
6586
  step: z.ZodString;
@@ -5791,7 +6591,7 @@ export declare const ConfigSchema: z.ZodObject<{
5791
6591
  }>, "many">>;
5792
6592
  }, "strict", z.ZodTypeAny, {
5793
6593
  name: string;
5794
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
6594
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
5795
6595
  path?: string | undefined;
5796
6596
  backendConfig?: {
5797
6597
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -5813,6 +6613,14 @@ export declare const ConfigSchema: z.ZodObject<{
5813
6613
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
5814
6614
  hasExperimentTracking: boolean;
5815
6615
  } | undefined;
6616
+ mcpServerConfig?: {
6617
+ language: "typescript" | "python";
6618
+ transport: "sse" | "stdio" | "streamable-http";
6619
+ primitives: ("tools" | "resources" | "prompts")[];
6620
+ auth: "none" | "oauth" | "apikey";
6621
+ deployment: "local" | "hosted";
6622
+ stateful: boolean;
6623
+ } | undefined;
5816
6624
  cliConfig?: {
5817
6625
  interactivity: "interactive" | "hybrid" | "args-only";
5818
6626
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -5875,7 +6683,7 @@ export declare const ConfigSchema: z.ZodObject<{
5875
6683
  }[] | undefined;
5876
6684
  }, {
5877
6685
  name: string;
5878
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
6686
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
5879
6687
  path?: string | undefined;
5880
6688
  backendConfig?: {
5881
6689
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -5897,6 +6705,14 @@ export declare const ConfigSchema: z.ZodObject<{
5897
6705
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
5898
6706
  hasExperimentTracking?: boolean | undefined;
5899
6707
  } | undefined;
6708
+ mcpServerConfig?: {
6709
+ language: "typescript" | "python";
6710
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
6711
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
6712
+ auth?: "none" | "oauth" | "apikey" | undefined;
6713
+ deployment?: "local" | "hosted" | undefined;
6714
+ stateful?: boolean | undefined;
6715
+ } | undefined;
5900
6716
  cliConfig?: {
5901
6717
  interactivity: "interactive" | "hybrid" | "args-only";
5902
6718
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -5959,7 +6775,7 @@ export declare const ConfigSchema: z.ZodObject<{
5959
6775
  }[] | undefined;
5960
6776
  }>, {
5961
6777
  name: string;
5962
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
6778
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
5963
6779
  path?: string | undefined;
5964
6780
  backendConfig?: {
5965
6781
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -5981,6 +6797,14 @@ export declare const ConfigSchema: z.ZodObject<{
5981
6797
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
5982
6798
  hasExperimentTracking: boolean;
5983
6799
  } | undefined;
6800
+ mcpServerConfig?: {
6801
+ language: "typescript" | "python";
6802
+ transport: "sse" | "stdio" | "streamable-http";
6803
+ primitives: ("tools" | "resources" | "prompts")[];
6804
+ auth: "none" | "oauth" | "apikey";
6805
+ deployment: "local" | "hosted";
6806
+ stateful: boolean;
6807
+ } | undefined;
5984
6808
  cliConfig?: {
5985
6809
  interactivity: "interactive" | "hybrid" | "args-only";
5986
6810
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -6043,7 +6867,7 @@ export declare const ConfigSchema: z.ZodObject<{
6043
6867
  }[] | undefined;
6044
6868
  }, {
6045
6869
  name: string;
6046
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
6870
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
6047
6871
  path?: string | undefined;
6048
6872
  backendConfig?: {
6049
6873
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -6065,6 +6889,14 @@ export declare const ConfigSchema: z.ZodObject<{
6065
6889
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
6066
6890
  hasExperimentTracking?: boolean | undefined;
6067
6891
  } | undefined;
6892
+ mcpServerConfig?: {
6893
+ language: "typescript" | "python";
6894
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
6895
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
6896
+ auth?: "none" | "oauth" | "apikey" | undefined;
6897
+ deployment?: "local" | "hosted" | undefined;
6898
+ stateful?: boolean | undefined;
6899
+ } | undefined;
6068
6900
  cliConfig?: {
6069
6901
  interactivity: "interactive" | "hybrid" | "args-only";
6070
6902
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -6129,7 +6961,7 @@ export declare const ConfigSchema: z.ZodObject<{
6129
6961
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
6130
6962
  name: z.ZodOptional<z.ZodString>;
6131
6963
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
6132
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
6964
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
6133
6965
  gameConfig: z.ZodOptional<z.ZodObject<{
6134
6966
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
6135
6967
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -6334,10 +7166,46 @@ export declare const ConfigSchema: z.ZodObject<{
6334
7166
  }, {
6335
7167
  scope?: "contracts" | undefined;
6336
7168
  }>>;
7169
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
7170
+ language: z.ZodEnum<["typescript", "python"]>;
7171
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
7172
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
7173
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
7174
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
7175
+ stateful: z.ZodDefault<z.ZodBoolean>;
7176
+ }, "strict", z.ZodTypeAny, {
7177
+ language: "typescript" | "python";
7178
+ transport: "sse" | "stdio" | "streamable-http";
7179
+ primitives: ("tools" | "resources" | "prompts")[];
7180
+ auth: "none" | "oauth" | "apikey";
7181
+ deployment: "local" | "hosted";
7182
+ stateful: boolean;
7183
+ }, {
7184
+ language: "typescript" | "python";
7185
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
7186
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
7187
+ auth?: "none" | "oauth" | "apikey" | undefined;
7188
+ deployment?: "local" | "hosted" | undefined;
7189
+ stateful?: boolean | undefined;
7190
+ }>, {
7191
+ language: "typescript" | "python";
7192
+ transport: "sse" | "stdio" | "streamable-http";
7193
+ primitives: ("tools" | "resources" | "prompts")[];
7194
+ auth: "none" | "oauth" | "apikey";
7195
+ deployment: "local" | "hosted";
7196
+ stateful: boolean;
7197
+ }, {
7198
+ language: "typescript" | "python";
7199
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
7200
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
7201
+ auth?: "none" | "oauth" | "apikey" | undefined;
7202
+ deployment?: "local" | "hosted" | undefined;
7203
+ stateful?: boolean | undefined;
7204
+ }>>;
6337
7205
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
6338
7206
  name: z.ZodString;
6339
7207
  description: z.ZodOptional<z.ZodString>;
6340
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
7208
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
6341
7209
  backendConfig: z.ZodOptional<z.ZodObject<{
6342
7210
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
6343
7211
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -6542,6 +7410,42 @@ export declare const ConfigSchema: z.ZodObject<{
6542
7410
  }, {
6543
7411
  scope?: "contracts" | undefined;
6544
7412
  }>>;
7413
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
7414
+ language: z.ZodEnum<["typescript", "python"]>;
7415
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
7416
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
7417
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
7418
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
7419
+ stateful: z.ZodDefault<z.ZodBoolean>;
7420
+ }, "strict", z.ZodTypeAny, {
7421
+ language: "typescript" | "python";
7422
+ transport: "sse" | "stdio" | "streamable-http";
7423
+ primitives: ("tools" | "resources" | "prompts")[];
7424
+ auth: "none" | "oauth" | "apikey";
7425
+ deployment: "local" | "hosted";
7426
+ stateful: boolean;
7427
+ }, {
7428
+ language: "typescript" | "python";
7429
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
7430
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
7431
+ auth?: "none" | "oauth" | "apikey" | undefined;
7432
+ deployment?: "local" | "hosted" | undefined;
7433
+ stateful?: boolean | undefined;
7434
+ }>, {
7435
+ language: "typescript" | "python";
7436
+ transport: "sse" | "stdio" | "streamable-http";
7437
+ primitives: ("tools" | "resources" | "prompts")[];
7438
+ auth: "none" | "oauth" | "apikey";
7439
+ deployment: "local" | "hosted";
7440
+ stateful: boolean;
7441
+ }, {
7442
+ language: "typescript" | "python";
7443
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
7444
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
7445
+ auth?: "none" | "oauth" | "apikey" | undefined;
7446
+ deployment?: "local" | "hosted" | undefined;
7447
+ stateful?: boolean | undefined;
7448
+ }>>;
6545
7449
  path: z.ZodOptional<z.ZodString>;
6546
7450
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
6547
7451
  step: z.ZodString;
@@ -6552,7 +7456,7 @@ export declare const ConfigSchema: z.ZodObject<{
6552
7456
  }>, "many">>;
6553
7457
  }, "strict", z.ZodTypeAny, {
6554
7458
  name: string;
6555
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
7459
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
6556
7460
  path?: string | undefined;
6557
7461
  backendConfig?: {
6558
7462
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -6574,6 +7478,14 @@ export declare const ConfigSchema: z.ZodObject<{
6574
7478
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
6575
7479
  hasExperimentTracking: boolean;
6576
7480
  } | undefined;
7481
+ mcpServerConfig?: {
7482
+ language: "typescript" | "python";
7483
+ transport: "sse" | "stdio" | "streamable-http";
7484
+ primitives: ("tools" | "resources" | "prompts")[];
7485
+ auth: "none" | "oauth" | "apikey";
7486
+ deployment: "local" | "hosted";
7487
+ stateful: boolean;
7488
+ } | undefined;
6577
7489
  cliConfig?: {
6578
7490
  interactivity: "interactive" | "hybrid" | "args-only";
6579
7491
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -6636,7 +7548,7 @@ export declare const ConfigSchema: z.ZodObject<{
6636
7548
  }[] | undefined;
6637
7549
  }, {
6638
7550
  name: string;
6639
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
7551
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
6640
7552
  path?: string | undefined;
6641
7553
  backendConfig?: {
6642
7554
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -6658,6 +7570,14 @@ export declare const ConfigSchema: z.ZodObject<{
6658
7570
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
6659
7571
  hasExperimentTracking?: boolean | undefined;
6660
7572
  } | undefined;
7573
+ mcpServerConfig?: {
7574
+ language: "typescript" | "python";
7575
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
7576
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
7577
+ auth?: "none" | "oauth" | "apikey" | undefined;
7578
+ deployment?: "local" | "hosted" | undefined;
7579
+ stateful?: boolean | undefined;
7580
+ } | undefined;
6661
7581
  cliConfig?: {
6662
7582
  interactivity: "interactive" | "hybrid" | "args-only";
6663
7583
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -6720,7 +7640,7 @@ export declare const ConfigSchema: z.ZodObject<{
6720
7640
  }[] | undefined;
6721
7641
  }>, {
6722
7642
  name: string;
6723
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
7643
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
6724
7644
  path?: string | undefined;
6725
7645
  backendConfig?: {
6726
7646
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -6742,6 +7662,14 @@ export declare const ConfigSchema: z.ZodObject<{
6742
7662
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
6743
7663
  hasExperimentTracking: boolean;
6744
7664
  } | undefined;
7665
+ mcpServerConfig?: {
7666
+ language: "typescript" | "python";
7667
+ transport: "sse" | "stdio" | "streamable-http";
7668
+ primitives: ("tools" | "resources" | "prompts")[];
7669
+ auth: "none" | "oauth" | "apikey";
7670
+ deployment: "local" | "hosted";
7671
+ stateful: boolean;
7672
+ } | undefined;
6745
7673
  cliConfig?: {
6746
7674
  interactivity: "interactive" | "hybrid" | "args-only";
6747
7675
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -6804,7 +7732,7 @@ export declare const ConfigSchema: z.ZodObject<{
6804
7732
  }[] | undefined;
6805
7733
  }, {
6806
7734
  name: string;
6807
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
7735
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
6808
7736
  path?: string | undefined;
6809
7737
  backendConfig?: {
6810
7738
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -6826,6 +7754,14 @@ export declare const ConfigSchema: z.ZodObject<{
6826
7754
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
6827
7755
  hasExperimentTracking?: boolean | undefined;
6828
7756
  } | undefined;
7757
+ mcpServerConfig?: {
7758
+ language: "typescript" | "python";
7759
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
7760
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
7761
+ auth?: "none" | "oauth" | "apikey" | undefined;
7762
+ deployment?: "local" | "hosted" | undefined;
7763
+ stateful?: boolean | undefined;
7764
+ } | undefined;
6829
7765
  cliConfig?: {
6830
7766
  interactivity: "interactive" | "hybrid" | "args-only";
6831
7767
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -6890,7 +7826,7 @@ export declare const ConfigSchema: z.ZodObject<{
6890
7826
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
6891
7827
  name: z.ZodOptional<z.ZodString>;
6892
7828
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
6893
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
7829
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
6894
7830
  gameConfig: z.ZodOptional<z.ZodObject<{
6895
7831
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
6896
7832
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -7095,10 +8031,46 @@ export declare const ConfigSchema: z.ZodObject<{
7095
8031
  }, {
7096
8032
  scope?: "contracts" | undefined;
7097
8033
  }>>;
8034
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
8035
+ language: z.ZodEnum<["typescript", "python"]>;
8036
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
8037
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
8038
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
8039
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
8040
+ stateful: z.ZodDefault<z.ZodBoolean>;
8041
+ }, "strict", z.ZodTypeAny, {
8042
+ language: "typescript" | "python";
8043
+ transport: "sse" | "stdio" | "streamable-http";
8044
+ primitives: ("tools" | "resources" | "prompts")[];
8045
+ auth: "none" | "oauth" | "apikey";
8046
+ deployment: "local" | "hosted";
8047
+ stateful: boolean;
8048
+ }, {
8049
+ language: "typescript" | "python";
8050
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
8051
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
8052
+ auth?: "none" | "oauth" | "apikey" | undefined;
8053
+ deployment?: "local" | "hosted" | undefined;
8054
+ stateful?: boolean | undefined;
8055
+ }>, {
8056
+ language: "typescript" | "python";
8057
+ transport: "sse" | "stdio" | "streamable-http";
8058
+ primitives: ("tools" | "resources" | "prompts")[];
8059
+ auth: "none" | "oauth" | "apikey";
8060
+ deployment: "local" | "hosted";
8061
+ stateful: boolean;
8062
+ }, {
8063
+ language: "typescript" | "python";
8064
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
8065
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
8066
+ auth?: "none" | "oauth" | "apikey" | undefined;
8067
+ deployment?: "local" | "hosted" | undefined;
8068
+ stateful?: boolean | undefined;
8069
+ }>>;
7098
8070
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
7099
8071
  name: z.ZodString;
7100
8072
  description: z.ZodOptional<z.ZodString>;
7101
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
8073
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
7102
8074
  backendConfig: z.ZodOptional<z.ZodObject<{
7103
8075
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
7104
8076
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -7303,6 +8275,42 @@ export declare const ConfigSchema: z.ZodObject<{
7303
8275
  }, {
7304
8276
  scope?: "contracts" | undefined;
7305
8277
  }>>;
8278
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
8279
+ language: z.ZodEnum<["typescript", "python"]>;
8280
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
8281
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
8282
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
8283
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
8284
+ stateful: z.ZodDefault<z.ZodBoolean>;
8285
+ }, "strict", z.ZodTypeAny, {
8286
+ language: "typescript" | "python";
8287
+ transport: "sse" | "stdio" | "streamable-http";
8288
+ primitives: ("tools" | "resources" | "prompts")[];
8289
+ auth: "none" | "oauth" | "apikey";
8290
+ deployment: "local" | "hosted";
8291
+ stateful: boolean;
8292
+ }, {
8293
+ language: "typescript" | "python";
8294
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
8295
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
8296
+ auth?: "none" | "oauth" | "apikey" | undefined;
8297
+ deployment?: "local" | "hosted" | undefined;
8298
+ stateful?: boolean | undefined;
8299
+ }>, {
8300
+ language: "typescript" | "python";
8301
+ transport: "sse" | "stdio" | "streamable-http";
8302
+ primitives: ("tools" | "resources" | "prompts")[];
8303
+ auth: "none" | "oauth" | "apikey";
8304
+ deployment: "local" | "hosted";
8305
+ stateful: boolean;
8306
+ }, {
8307
+ language: "typescript" | "python";
8308
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
8309
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
8310
+ auth?: "none" | "oauth" | "apikey" | undefined;
8311
+ deployment?: "local" | "hosted" | undefined;
8312
+ stateful?: boolean | undefined;
8313
+ }>>;
7306
8314
  path: z.ZodOptional<z.ZodString>;
7307
8315
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
7308
8316
  step: z.ZodString;
@@ -7313,7 +8321,7 @@ export declare const ConfigSchema: z.ZodObject<{
7313
8321
  }>, "many">>;
7314
8322
  }, "strict", z.ZodTypeAny, {
7315
8323
  name: string;
7316
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
8324
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
7317
8325
  path?: string | undefined;
7318
8326
  backendConfig?: {
7319
8327
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -7335,6 +8343,14 @@ export declare const ConfigSchema: z.ZodObject<{
7335
8343
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
7336
8344
  hasExperimentTracking: boolean;
7337
8345
  } | undefined;
8346
+ mcpServerConfig?: {
8347
+ language: "typescript" | "python";
8348
+ transport: "sse" | "stdio" | "streamable-http";
8349
+ primitives: ("tools" | "resources" | "prompts")[];
8350
+ auth: "none" | "oauth" | "apikey";
8351
+ deployment: "local" | "hosted";
8352
+ stateful: boolean;
8353
+ } | undefined;
7338
8354
  cliConfig?: {
7339
8355
  interactivity: "interactive" | "hybrid" | "args-only";
7340
8356
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -7397,7 +8413,7 @@ export declare const ConfigSchema: z.ZodObject<{
7397
8413
  }[] | undefined;
7398
8414
  }, {
7399
8415
  name: string;
7400
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
8416
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
7401
8417
  path?: string | undefined;
7402
8418
  backendConfig?: {
7403
8419
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -7419,6 +8435,14 @@ export declare const ConfigSchema: z.ZodObject<{
7419
8435
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
7420
8436
  hasExperimentTracking?: boolean | undefined;
7421
8437
  } | undefined;
8438
+ mcpServerConfig?: {
8439
+ language: "typescript" | "python";
8440
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
8441
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
8442
+ auth?: "none" | "oauth" | "apikey" | undefined;
8443
+ deployment?: "local" | "hosted" | undefined;
8444
+ stateful?: boolean | undefined;
8445
+ } | undefined;
7422
8446
  cliConfig?: {
7423
8447
  interactivity: "interactive" | "hybrid" | "args-only";
7424
8448
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -7481,7 +8505,7 @@ export declare const ConfigSchema: z.ZodObject<{
7481
8505
  }[] | undefined;
7482
8506
  }>, {
7483
8507
  name: string;
7484
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
8508
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
7485
8509
  path?: string | undefined;
7486
8510
  backendConfig?: {
7487
8511
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -7503,6 +8527,14 @@ export declare const ConfigSchema: z.ZodObject<{
7503
8527
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
7504
8528
  hasExperimentTracking: boolean;
7505
8529
  } | undefined;
8530
+ mcpServerConfig?: {
8531
+ language: "typescript" | "python";
8532
+ transport: "sse" | "stdio" | "streamable-http";
8533
+ primitives: ("tools" | "resources" | "prompts")[];
8534
+ auth: "none" | "oauth" | "apikey";
8535
+ deployment: "local" | "hosted";
8536
+ stateful: boolean;
8537
+ } | undefined;
7506
8538
  cliConfig?: {
7507
8539
  interactivity: "interactive" | "hybrid" | "args-only";
7508
8540
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -7565,7 +8597,7 @@ export declare const ConfigSchema: z.ZodObject<{
7565
8597
  }[] | undefined;
7566
8598
  }, {
7567
8599
  name: string;
7568
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
8600
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
7569
8601
  path?: string | undefined;
7570
8602
  backendConfig?: {
7571
8603
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -7587,6 +8619,14 @@ export declare const ConfigSchema: z.ZodObject<{
7587
8619
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
7588
8620
  hasExperimentTracking?: boolean | undefined;
7589
8621
  } | undefined;
8622
+ mcpServerConfig?: {
8623
+ language: "typescript" | "python";
8624
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
8625
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
8626
+ auth?: "none" | "oauth" | "apikey" | undefined;
8627
+ deployment?: "local" | "hosted" | undefined;
8628
+ stateful?: boolean | undefined;
8629
+ } | undefined;
7590
8630
  cliConfig?: {
7591
8631
  interactivity: "interactive" | "hybrid" | "args-only";
7592
8632
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -7651,7 +8691,7 @@ export declare const ConfigSchema: z.ZodObject<{
7651
8691
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
7652
8692
  name: z.ZodOptional<z.ZodString>;
7653
8693
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
7654
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
8694
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
7655
8695
  gameConfig: z.ZodOptional<z.ZodObject<{
7656
8696
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
7657
8697
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -7856,10 +8896,46 @@ export declare const ConfigSchema: z.ZodObject<{
7856
8896
  }, {
7857
8897
  scope?: "contracts" | undefined;
7858
8898
  }>>;
8899
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
8900
+ language: z.ZodEnum<["typescript", "python"]>;
8901
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
8902
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
8903
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
8904
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
8905
+ stateful: z.ZodDefault<z.ZodBoolean>;
8906
+ }, "strict", z.ZodTypeAny, {
8907
+ language: "typescript" | "python";
8908
+ transport: "sse" | "stdio" | "streamable-http";
8909
+ primitives: ("tools" | "resources" | "prompts")[];
8910
+ auth: "none" | "oauth" | "apikey";
8911
+ deployment: "local" | "hosted";
8912
+ stateful: boolean;
8913
+ }, {
8914
+ language: "typescript" | "python";
8915
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
8916
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
8917
+ auth?: "none" | "oauth" | "apikey" | undefined;
8918
+ deployment?: "local" | "hosted" | undefined;
8919
+ stateful?: boolean | undefined;
8920
+ }>, {
8921
+ language: "typescript" | "python";
8922
+ transport: "sse" | "stdio" | "streamable-http";
8923
+ primitives: ("tools" | "resources" | "prompts")[];
8924
+ auth: "none" | "oauth" | "apikey";
8925
+ deployment: "local" | "hosted";
8926
+ stateful: boolean;
8927
+ }, {
8928
+ language: "typescript" | "python";
8929
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
8930
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
8931
+ auth?: "none" | "oauth" | "apikey" | undefined;
8932
+ deployment?: "local" | "hosted" | undefined;
8933
+ stateful?: boolean | undefined;
8934
+ }>>;
7859
8935
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
7860
8936
  name: z.ZodString;
7861
8937
  description: z.ZodOptional<z.ZodString>;
7862
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
8938
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
7863
8939
  backendConfig: z.ZodOptional<z.ZodObject<{
7864
8940
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
7865
8941
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -8064,6 +9140,42 @@ export declare const ConfigSchema: z.ZodObject<{
8064
9140
  }, {
8065
9141
  scope?: "contracts" | undefined;
8066
9142
  }>>;
9143
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
9144
+ language: z.ZodEnum<["typescript", "python"]>;
9145
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
9146
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
9147
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
9148
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
9149
+ stateful: z.ZodDefault<z.ZodBoolean>;
9150
+ }, "strict", z.ZodTypeAny, {
9151
+ language: "typescript" | "python";
9152
+ transport: "sse" | "stdio" | "streamable-http";
9153
+ primitives: ("tools" | "resources" | "prompts")[];
9154
+ auth: "none" | "oauth" | "apikey";
9155
+ deployment: "local" | "hosted";
9156
+ stateful: boolean;
9157
+ }, {
9158
+ language: "typescript" | "python";
9159
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
9160
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
9161
+ auth?: "none" | "oauth" | "apikey" | undefined;
9162
+ deployment?: "local" | "hosted" | undefined;
9163
+ stateful?: boolean | undefined;
9164
+ }>, {
9165
+ language: "typescript" | "python";
9166
+ transport: "sse" | "stdio" | "streamable-http";
9167
+ primitives: ("tools" | "resources" | "prompts")[];
9168
+ auth: "none" | "oauth" | "apikey";
9169
+ deployment: "local" | "hosted";
9170
+ stateful: boolean;
9171
+ }, {
9172
+ language: "typescript" | "python";
9173
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
9174
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
9175
+ auth?: "none" | "oauth" | "apikey" | undefined;
9176
+ deployment?: "local" | "hosted" | undefined;
9177
+ stateful?: boolean | undefined;
9178
+ }>>;
8067
9179
  path: z.ZodOptional<z.ZodString>;
8068
9180
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
8069
9181
  step: z.ZodString;
@@ -8074,7 +9186,7 @@ export declare const ConfigSchema: z.ZodObject<{
8074
9186
  }>, "many">>;
8075
9187
  }, "strict", z.ZodTypeAny, {
8076
9188
  name: string;
8077
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
9189
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
8078
9190
  path?: string | undefined;
8079
9191
  backendConfig?: {
8080
9192
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -8096,6 +9208,14 @@ export declare const ConfigSchema: z.ZodObject<{
8096
9208
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
8097
9209
  hasExperimentTracking: boolean;
8098
9210
  } | undefined;
9211
+ mcpServerConfig?: {
9212
+ language: "typescript" | "python";
9213
+ transport: "sse" | "stdio" | "streamable-http";
9214
+ primitives: ("tools" | "resources" | "prompts")[];
9215
+ auth: "none" | "oauth" | "apikey";
9216
+ deployment: "local" | "hosted";
9217
+ stateful: boolean;
9218
+ } | undefined;
8099
9219
  cliConfig?: {
8100
9220
  interactivity: "interactive" | "hybrid" | "args-only";
8101
9221
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -8158,7 +9278,7 @@ export declare const ConfigSchema: z.ZodObject<{
8158
9278
  }[] | undefined;
8159
9279
  }, {
8160
9280
  name: string;
8161
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
9281
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
8162
9282
  path?: string | undefined;
8163
9283
  backendConfig?: {
8164
9284
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -8180,6 +9300,14 @@ export declare const ConfigSchema: z.ZodObject<{
8180
9300
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
8181
9301
  hasExperimentTracking?: boolean | undefined;
8182
9302
  } | undefined;
9303
+ mcpServerConfig?: {
9304
+ language: "typescript" | "python";
9305
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
9306
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
9307
+ auth?: "none" | "oauth" | "apikey" | undefined;
9308
+ deployment?: "local" | "hosted" | undefined;
9309
+ stateful?: boolean | undefined;
9310
+ } | undefined;
8183
9311
  cliConfig?: {
8184
9312
  interactivity: "interactive" | "hybrid" | "args-only";
8185
9313
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -8242,7 +9370,7 @@ export declare const ConfigSchema: z.ZodObject<{
8242
9370
  }[] | undefined;
8243
9371
  }>, {
8244
9372
  name: string;
8245
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
9373
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
8246
9374
  path?: string | undefined;
8247
9375
  backendConfig?: {
8248
9376
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -8264,6 +9392,14 @@ export declare const ConfigSchema: z.ZodObject<{
8264
9392
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
8265
9393
  hasExperimentTracking: boolean;
8266
9394
  } | undefined;
9395
+ mcpServerConfig?: {
9396
+ language: "typescript" | "python";
9397
+ transport: "sse" | "stdio" | "streamable-http";
9398
+ primitives: ("tools" | "resources" | "prompts")[];
9399
+ auth: "none" | "oauth" | "apikey";
9400
+ deployment: "local" | "hosted";
9401
+ stateful: boolean;
9402
+ } | undefined;
8267
9403
  cliConfig?: {
8268
9404
  interactivity: "interactive" | "hybrid" | "args-only";
8269
9405
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -8326,7 +9462,7 @@ export declare const ConfigSchema: z.ZodObject<{
8326
9462
  }[] | undefined;
8327
9463
  }, {
8328
9464
  name: string;
8329
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
9465
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
8330
9466
  path?: string | undefined;
8331
9467
  backendConfig?: {
8332
9468
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -8348,6 +9484,14 @@ export declare const ConfigSchema: z.ZodObject<{
8348
9484
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
8349
9485
  hasExperimentTracking?: boolean | undefined;
8350
9486
  } | undefined;
9487
+ mcpServerConfig?: {
9488
+ language: "typescript" | "python";
9489
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
9490
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
9491
+ auth?: "none" | "oauth" | "apikey" | undefined;
9492
+ deployment?: "local" | "hosted" | undefined;
9493
+ stateful?: boolean | undefined;
9494
+ } | undefined;
8351
9495
  cliConfig?: {
8352
9496
  interactivity: "interactive" | "hybrid" | "args-only";
8353
9497
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -8442,7 +9586,7 @@ export declare const ConfigSchema: z.ZodObject<{
8442
9586
  project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
8443
9587
  name: z.ZodOptional<z.ZodString>;
8444
9588
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
8445
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
9589
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
8446
9590
  gameConfig: z.ZodOptional<z.ZodObject<{
8447
9591
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
8448
9592
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -8647,10 +9791,46 @@ export declare const ConfigSchema: z.ZodObject<{
8647
9791
  }, {
8648
9792
  scope?: "contracts" | undefined;
8649
9793
  }>>;
9794
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
9795
+ language: z.ZodEnum<["typescript", "python"]>;
9796
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
9797
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
9798
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
9799
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
9800
+ stateful: z.ZodDefault<z.ZodBoolean>;
9801
+ }, "strict", z.ZodTypeAny, {
9802
+ language: "typescript" | "python";
9803
+ transport: "sse" | "stdio" | "streamable-http";
9804
+ primitives: ("tools" | "resources" | "prompts")[];
9805
+ auth: "none" | "oauth" | "apikey";
9806
+ deployment: "local" | "hosted";
9807
+ stateful: boolean;
9808
+ }, {
9809
+ language: "typescript" | "python";
9810
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
9811
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
9812
+ auth?: "none" | "oauth" | "apikey" | undefined;
9813
+ deployment?: "local" | "hosted" | undefined;
9814
+ stateful?: boolean | undefined;
9815
+ }>, {
9816
+ language: "typescript" | "python";
9817
+ transport: "sse" | "stdio" | "streamable-http";
9818
+ primitives: ("tools" | "resources" | "prompts")[];
9819
+ auth: "none" | "oauth" | "apikey";
9820
+ deployment: "local" | "hosted";
9821
+ stateful: boolean;
9822
+ }, {
9823
+ language: "typescript" | "python";
9824
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
9825
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
9826
+ auth?: "none" | "oauth" | "apikey" | undefined;
9827
+ deployment?: "local" | "hosted" | undefined;
9828
+ stateful?: boolean | undefined;
9829
+ }>>;
8650
9830
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
8651
9831
  name: z.ZodString;
8652
9832
  description: z.ZodOptional<z.ZodString>;
8653
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
9833
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
8654
9834
  backendConfig: z.ZodOptional<z.ZodObject<{
8655
9835
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
8656
9836
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -8855,6 +10035,42 @@ export declare const ConfigSchema: z.ZodObject<{
8855
10035
  }, {
8856
10036
  scope?: "contracts" | undefined;
8857
10037
  }>>;
10038
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
10039
+ language: z.ZodEnum<["typescript", "python"]>;
10040
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
10041
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
10042
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
10043
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
10044
+ stateful: z.ZodDefault<z.ZodBoolean>;
10045
+ }, "strict", z.ZodTypeAny, {
10046
+ language: "typescript" | "python";
10047
+ transport: "sse" | "stdio" | "streamable-http";
10048
+ primitives: ("tools" | "resources" | "prompts")[];
10049
+ auth: "none" | "oauth" | "apikey";
10050
+ deployment: "local" | "hosted";
10051
+ stateful: boolean;
10052
+ }, {
10053
+ language: "typescript" | "python";
10054
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
10055
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
10056
+ auth?: "none" | "oauth" | "apikey" | undefined;
10057
+ deployment?: "local" | "hosted" | undefined;
10058
+ stateful?: boolean | undefined;
10059
+ }>, {
10060
+ language: "typescript" | "python";
10061
+ transport: "sse" | "stdio" | "streamable-http";
10062
+ primitives: ("tools" | "resources" | "prompts")[];
10063
+ auth: "none" | "oauth" | "apikey";
10064
+ deployment: "local" | "hosted";
10065
+ stateful: boolean;
10066
+ }, {
10067
+ language: "typescript" | "python";
10068
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
10069
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
10070
+ auth?: "none" | "oauth" | "apikey" | undefined;
10071
+ deployment?: "local" | "hosted" | undefined;
10072
+ stateful?: boolean | undefined;
10073
+ }>>;
8858
10074
  path: z.ZodOptional<z.ZodString>;
8859
10075
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
8860
10076
  step: z.ZodString;
@@ -8865,7 +10081,7 @@ export declare const ConfigSchema: z.ZodObject<{
8865
10081
  }>, "many">>;
8866
10082
  }, "strict", z.ZodTypeAny, {
8867
10083
  name: string;
8868
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
10084
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
8869
10085
  path?: string | undefined;
8870
10086
  backendConfig?: {
8871
10087
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -8887,6 +10103,14 @@ export declare const ConfigSchema: z.ZodObject<{
8887
10103
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
8888
10104
  hasExperimentTracking: boolean;
8889
10105
  } | undefined;
10106
+ mcpServerConfig?: {
10107
+ language: "typescript" | "python";
10108
+ transport: "sse" | "stdio" | "streamable-http";
10109
+ primitives: ("tools" | "resources" | "prompts")[];
10110
+ auth: "none" | "oauth" | "apikey";
10111
+ deployment: "local" | "hosted";
10112
+ stateful: boolean;
10113
+ } | undefined;
8890
10114
  cliConfig?: {
8891
10115
  interactivity: "interactive" | "hybrid" | "args-only";
8892
10116
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -8949,7 +10173,7 @@ export declare const ConfigSchema: z.ZodObject<{
8949
10173
  }[] | undefined;
8950
10174
  }, {
8951
10175
  name: string;
8952
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
10176
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
8953
10177
  path?: string | undefined;
8954
10178
  backendConfig?: {
8955
10179
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -8971,6 +10195,14 @@ export declare const ConfigSchema: z.ZodObject<{
8971
10195
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
8972
10196
  hasExperimentTracking?: boolean | undefined;
8973
10197
  } | undefined;
10198
+ mcpServerConfig?: {
10199
+ language: "typescript" | "python";
10200
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
10201
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
10202
+ auth?: "none" | "oauth" | "apikey" | undefined;
10203
+ deployment?: "local" | "hosted" | undefined;
10204
+ stateful?: boolean | undefined;
10205
+ } | undefined;
8974
10206
  cliConfig?: {
8975
10207
  interactivity: "interactive" | "hybrid" | "args-only";
8976
10208
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -9033,7 +10265,7 @@ export declare const ConfigSchema: z.ZodObject<{
9033
10265
  }[] | undefined;
9034
10266
  }>, {
9035
10267
  name: string;
9036
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
10268
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
9037
10269
  path?: string | undefined;
9038
10270
  backendConfig?: {
9039
10271
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -9055,6 +10287,14 @@ export declare const ConfigSchema: z.ZodObject<{
9055
10287
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
9056
10288
  hasExperimentTracking: boolean;
9057
10289
  } | undefined;
10290
+ mcpServerConfig?: {
10291
+ language: "typescript" | "python";
10292
+ transport: "sse" | "stdio" | "streamable-http";
10293
+ primitives: ("tools" | "resources" | "prompts")[];
10294
+ auth: "none" | "oauth" | "apikey";
10295
+ deployment: "local" | "hosted";
10296
+ stateful: boolean;
10297
+ } | undefined;
9058
10298
  cliConfig?: {
9059
10299
  interactivity: "interactive" | "hybrid" | "args-only";
9060
10300
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -9117,7 +10357,7 @@ export declare const ConfigSchema: z.ZodObject<{
9117
10357
  }[] | undefined;
9118
10358
  }, {
9119
10359
  name: string;
9120
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
10360
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
9121
10361
  path?: string | undefined;
9122
10362
  backendConfig?: {
9123
10363
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -9139,6 +10379,14 @@ export declare const ConfigSchema: z.ZodObject<{
9139
10379
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
9140
10380
  hasExperimentTracking?: boolean | undefined;
9141
10381
  } | undefined;
10382
+ mcpServerConfig?: {
10383
+ language: "typescript" | "python";
10384
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
10385
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
10386
+ auth?: "none" | "oauth" | "apikey" | undefined;
10387
+ deployment?: "local" | "hosted" | undefined;
10388
+ stateful?: boolean | undefined;
10389
+ } | undefined;
9142
10390
  cliConfig?: {
9143
10391
  interactivity: "interactive" | "hybrid" | "args-only";
9144
10392
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -9203,7 +10451,7 @@ export declare const ConfigSchema: z.ZodObject<{
9203
10451
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
9204
10452
  name: z.ZodOptional<z.ZodString>;
9205
10453
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
9206
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
10454
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
9207
10455
  gameConfig: z.ZodOptional<z.ZodObject<{
9208
10456
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
9209
10457
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -9408,10 +10656,46 @@ export declare const ConfigSchema: z.ZodObject<{
9408
10656
  }, {
9409
10657
  scope?: "contracts" | undefined;
9410
10658
  }>>;
10659
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
10660
+ language: z.ZodEnum<["typescript", "python"]>;
10661
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
10662
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
10663
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
10664
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
10665
+ stateful: z.ZodDefault<z.ZodBoolean>;
10666
+ }, "strict", z.ZodTypeAny, {
10667
+ language: "typescript" | "python";
10668
+ transport: "sse" | "stdio" | "streamable-http";
10669
+ primitives: ("tools" | "resources" | "prompts")[];
10670
+ auth: "none" | "oauth" | "apikey";
10671
+ deployment: "local" | "hosted";
10672
+ stateful: boolean;
10673
+ }, {
10674
+ language: "typescript" | "python";
10675
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
10676
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
10677
+ auth?: "none" | "oauth" | "apikey" | undefined;
10678
+ deployment?: "local" | "hosted" | undefined;
10679
+ stateful?: boolean | undefined;
10680
+ }>, {
10681
+ language: "typescript" | "python";
10682
+ transport: "sse" | "stdio" | "streamable-http";
10683
+ primitives: ("tools" | "resources" | "prompts")[];
10684
+ auth: "none" | "oauth" | "apikey";
10685
+ deployment: "local" | "hosted";
10686
+ stateful: boolean;
10687
+ }, {
10688
+ language: "typescript" | "python";
10689
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
10690
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
10691
+ auth?: "none" | "oauth" | "apikey" | undefined;
10692
+ deployment?: "local" | "hosted" | undefined;
10693
+ stateful?: boolean | undefined;
10694
+ }>>;
9411
10695
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
9412
10696
  name: z.ZodString;
9413
10697
  description: z.ZodOptional<z.ZodString>;
9414
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
10698
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
9415
10699
  backendConfig: z.ZodOptional<z.ZodObject<{
9416
10700
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
9417
10701
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -9616,6 +10900,42 @@ export declare const ConfigSchema: z.ZodObject<{
9616
10900
  }, {
9617
10901
  scope?: "contracts" | undefined;
9618
10902
  }>>;
10903
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
10904
+ language: z.ZodEnum<["typescript", "python"]>;
10905
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
10906
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
10907
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
10908
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
10909
+ stateful: z.ZodDefault<z.ZodBoolean>;
10910
+ }, "strict", z.ZodTypeAny, {
10911
+ language: "typescript" | "python";
10912
+ transport: "sse" | "stdio" | "streamable-http";
10913
+ primitives: ("tools" | "resources" | "prompts")[];
10914
+ auth: "none" | "oauth" | "apikey";
10915
+ deployment: "local" | "hosted";
10916
+ stateful: boolean;
10917
+ }, {
10918
+ language: "typescript" | "python";
10919
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
10920
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
10921
+ auth?: "none" | "oauth" | "apikey" | undefined;
10922
+ deployment?: "local" | "hosted" | undefined;
10923
+ stateful?: boolean | undefined;
10924
+ }>, {
10925
+ language: "typescript" | "python";
10926
+ transport: "sse" | "stdio" | "streamable-http";
10927
+ primitives: ("tools" | "resources" | "prompts")[];
10928
+ auth: "none" | "oauth" | "apikey";
10929
+ deployment: "local" | "hosted";
10930
+ stateful: boolean;
10931
+ }, {
10932
+ language: "typescript" | "python";
10933
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
10934
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
10935
+ auth?: "none" | "oauth" | "apikey" | undefined;
10936
+ deployment?: "local" | "hosted" | undefined;
10937
+ stateful?: boolean | undefined;
10938
+ }>>;
9619
10939
  path: z.ZodOptional<z.ZodString>;
9620
10940
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
9621
10941
  step: z.ZodString;
@@ -9626,7 +10946,7 @@ export declare const ConfigSchema: z.ZodObject<{
9626
10946
  }>, "many">>;
9627
10947
  }, "strict", z.ZodTypeAny, {
9628
10948
  name: string;
9629
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
10949
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
9630
10950
  path?: string | undefined;
9631
10951
  backendConfig?: {
9632
10952
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -9648,6 +10968,14 @@ export declare const ConfigSchema: z.ZodObject<{
9648
10968
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
9649
10969
  hasExperimentTracking: boolean;
9650
10970
  } | undefined;
10971
+ mcpServerConfig?: {
10972
+ language: "typescript" | "python";
10973
+ transport: "sse" | "stdio" | "streamable-http";
10974
+ primitives: ("tools" | "resources" | "prompts")[];
10975
+ auth: "none" | "oauth" | "apikey";
10976
+ deployment: "local" | "hosted";
10977
+ stateful: boolean;
10978
+ } | undefined;
9651
10979
  cliConfig?: {
9652
10980
  interactivity: "interactive" | "hybrid" | "args-only";
9653
10981
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -9710,7 +11038,7 @@ export declare const ConfigSchema: z.ZodObject<{
9710
11038
  }[] | undefined;
9711
11039
  }, {
9712
11040
  name: string;
9713
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
11041
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
9714
11042
  path?: string | undefined;
9715
11043
  backendConfig?: {
9716
11044
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -9732,6 +11060,14 @@ export declare const ConfigSchema: z.ZodObject<{
9732
11060
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
9733
11061
  hasExperimentTracking?: boolean | undefined;
9734
11062
  } | undefined;
11063
+ mcpServerConfig?: {
11064
+ language: "typescript" | "python";
11065
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
11066
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
11067
+ auth?: "none" | "oauth" | "apikey" | undefined;
11068
+ deployment?: "local" | "hosted" | undefined;
11069
+ stateful?: boolean | undefined;
11070
+ } | undefined;
9735
11071
  cliConfig?: {
9736
11072
  interactivity: "interactive" | "hybrid" | "args-only";
9737
11073
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -9794,7 +11130,7 @@ export declare const ConfigSchema: z.ZodObject<{
9794
11130
  }[] | undefined;
9795
11131
  }>, {
9796
11132
  name: string;
9797
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
11133
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
9798
11134
  path?: string | undefined;
9799
11135
  backendConfig?: {
9800
11136
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -9816,6 +11152,14 @@ export declare const ConfigSchema: z.ZodObject<{
9816
11152
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
9817
11153
  hasExperimentTracking: boolean;
9818
11154
  } | undefined;
11155
+ mcpServerConfig?: {
11156
+ language: "typescript" | "python";
11157
+ transport: "sse" | "stdio" | "streamable-http";
11158
+ primitives: ("tools" | "resources" | "prompts")[];
11159
+ auth: "none" | "oauth" | "apikey";
11160
+ deployment: "local" | "hosted";
11161
+ stateful: boolean;
11162
+ } | undefined;
9819
11163
  cliConfig?: {
9820
11164
  interactivity: "interactive" | "hybrid" | "args-only";
9821
11165
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -9878,7 +11222,7 @@ export declare const ConfigSchema: z.ZodObject<{
9878
11222
  }[] | undefined;
9879
11223
  }, {
9880
11224
  name: string;
9881
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
11225
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
9882
11226
  path?: string | undefined;
9883
11227
  backendConfig?: {
9884
11228
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -9900,6 +11244,14 @@ export declare const ConfigSchema: z.ZodObject<{
9900
11244
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
9901
11245
  hasExperimentTracking?: boolean | undefined;
9902
11246
  } | undefined;
11247
+ mcpServerConfig?: {
11248
+ language: "typescript" | "python";
11249
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
11250
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
11251
+ auth?: "none" | "oauth" | "apikey" | undefined;
11252
+ deployment?: "local" | "hosted" | undefined;
11253
+ stateful?: boolean | undefined;
11254
+ } | undefined;
9903
11255
  cliConfig?: {
9904
11256
  interactivity: "interactive" | "hybrid" | "args-only";
9905
11257
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -9964,7 +11316,7 @@ export declare const ConfigSchema: z.ZodObject<{
9964
11316
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
9965
11317
  name: z.ZodOptional<z.ZodString>;
9966
11318
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
9967
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
11319
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
9968
11320
  gameConfig: z.ZodOptional<z.ZodObject<{
9969
11321
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
9970
11322
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -10169,10 +11521,46 @@ export declare const ConfigSchema: z.ZodObject<{
10169
11521
  }, {
10170
11522
  scope?: "contracts" | undefined;
10171
11523
  }>>;
11524
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
11525
+ language: z.ZodEnum<["typescript", "python"]>;
11526
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
11527
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
11528
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
11529
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
11530
+ stateful: z.ZodDefault<z.ZodBoolean>;
11531
+ }, "strict", z.ZodTypeAny, {
11532
+ language: "typescript" | "python";
11533
+ transport: "sse" | "stdio" | "streamable-http";
11534
+ primitives: ("tools" | "resources" | "prompts")[];
11535
+ auth: "none" | "oauth" | "apikey";
11536
+ deployment: "local" | "hosted";
11537
+ stateful: boolean;
11538
+ }, {
11539
+ language: "typescript" | "python";
11540
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
11541
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
11542
+ auth?: "none" | "oauth" | "apikey" | undefined;
11543
+ deployment?: "local" | "hosted" | undefined;
11544
+ stateful?: boolean | undefined;
11545
+ }>, {
11546
+ language: "typescript" | "python";
11547
+ transport: "sse" | "stdio" | "streamable-http";
11548
+ primitives: ("tools" | "resources" | "prompts")[];
11549
+ auth: "none" | "oauth" | "apikey";
11550
+ deployment: "local" | "hosted";
11551
+ stateful: boolean;
11552
+ }, {
11553
+ language: "typescript" | "python";
11554
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
11555
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
11556
+ auth?: "none" | "oauth" | "apikey" | undefined;
11557
+ deployment?: "local" | "hosted" | undefined;
11558
+ stateful?: boolean | undefined;
11559
+ }>>;
10172
11560
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
10173
11561
  name: z.ZodString;
10174
11562
  description: z.ZodOptional<z.ZodString>;
10175
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
11563
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
10176
11564
  backendConfig: z.ZodOptional<z.ZodObject<{
10177
11565
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
10178
11566
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -10377,6 +11765,42 @@ export declare const ConfigSchema: z.ZodObject<{
10377
11765
  }, {
10378
11766
  scope?: "contracts" | undefined;
10379
11767
  }>>;
11768
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
11769
+ language: z.ZodEnum<["typescript", "python"]>;
11770
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
11771
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
11772
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
11773
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
11774
+ stateful: z.ZodDefault<z.ZodBoolean>;
11775
+ }, "strict", z.ZodTypeAny, {
11776
+ language: "typescript" | "python";
11777
+ transport: "sse" | "stdio" | "streamable-http";
11778
+ primitives: ("tools" | "resources" | "prompts")[];
11779
+ auth: "none" | "oauth" | "apikey";
11780
+ deployment: "local" | "hosted";
11781
+ stateful: boolean;
11782
+ }, {
11783
+ language: "typescript" | "python";
11784
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
11785
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
11786
+ auth?: "none" | "oauth" | "apikey" | undefined;
11787
+ deployment?: "local" | "hosted" | undefined;
11788
+ stateful?: boolean | undefined;
11789
+ }>, {
11790
+ language: "typescript" | "python";
11791
+ transport: "sse" | "stdio" | "streamable-http";
11792
+ primitives: ("tools" | "resources" | "prompts")[];
11793
+ auth: "none" | "oauth" | "apikey";
11794
+ deployment: "local" | "hosted";
11795
+ stateful: boolean;
11796
+ }, {
11797
+ language: "typescript" | "python";
11798
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
11799
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
11800
+ auth?: "none" | "oauth" | "apikey" | undefined;
11801
+ deployment?: "local" | "hosted" | undefined;
11802
+ stateful?: boolean | undefined;
11803
+ }>>;
10380
11804
  path: z.ZodOptional<z.ZodString>;
10381
11805
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
10382
11806
  step: z.ZodString;
@@ -10387,7 +11811,7 @@ export declare const ConfigSchema: z.ZodObject<{
10387
11811
  }>, "many">>;
10388
11812
  }, "strict", z.ZodTypeAny, {
10389
11813
  name: string;
10390
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
11814
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
10391
11815
  path?: string | undefined;
10392
11816
  backendConfig?: {
10393
11817
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -10409,6 +11833,14 @@ export declare const ConfigSchema: z.ZodObject<{
10409
11833
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
10410
11834
  hasExperimentTracking: boolean;
10411
11835
  } | undefined;
11836
+ mcpServerConfig?: {
11837
+ language: "typescript" | "python";
11838
+ transport: "sse" | "stdio" | "streamable-http";
11839
+ primitives: ("tools" | "resources" | "prompts")[];
11840
+ auth: "none" | "oauth" | "apikey";
11841
+ deployment: "local" | "hosted";
11842
+ stateful: boolean;
11843
+ } | undefined;
10412
11844
  cliConfig?: {
10413
11845
  interactivity: "interactive" | "hybrid" | "args-only";
10414
11846
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -10471,7 +11903,7 @@ export declare const ConfigSchema: z.ZodObject<{
10471
11903
  }[] | undefined;
10472
11904
  }, {
10473
11905
  name: string;
10474
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
11906
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
10475
11907
  path?: string | undefined;
10476
11908
  backendConfig?: {
10477
11909
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -10493,6 +11925,14 @@ export declare const ConfigSchema: z.ZodObject<{
10493
11925
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
10494
11926
  hasExperimentTracking?: boolean | undefined;
10495
11927
  } | undefined;
11928
+ mcpServerConfig?: {
11929
+ language: "typescript" | "python";
11930
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
11931
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
11932
+ auth?: "none" | "oauth" | "apikey" | undefined;
11933
+ deployment?: "local" | "hosted" | undefined;
11934
+ stateful?: boolean | undefined;
11935
+ } | undefined;
10496
11936
  cliConfig?: {
10497
11937
  interactivity: "interactive" | "hybrid" | "args-only";
10498
11938
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -10555,7 +11995,7 @@ export declare const ConfigSchema: z.ZodObject<{
10555
11995
  }[] | undefined;
10556
11996
  }>, {
10557
11997
  name: string;
10558
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
11998
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
10559
11999
  path?: string | undefined;
10560
12000
  backendConfig?: {
10561
12001
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -10577,6 +12017,14 @@ export declare const ConfigSchema: z.ZodObject<{
10577
12017
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
10578
12018
  hasExperimentTracking: boolean;
10579
12019
  } | undefined;
12020
+ mcpServerConfig?: {
12021
+ language: "typescript" | "python";
12022
+ transport: "sse" | "stdio" | "streamable-http";
12023
+ primitives: ("tools" | "resources" | "prompts")[];
12024
+ auth: "none" | "oauth" | "apikey";
12025
+ deployment: "local" | "hosted";
12026
+ stateful: boolean;
12027
+ } | undefined;
10580
12028
  cliConfig?: {
10581
12029
  interactivity: "interactive" | "hybrid" | "args-only";
10582
12030
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -10639,7 +12087,7 @@ export declare const ConfigSchema: z.ZodObject<{
10639
12087
  }[] | undefined;
10640
12088
  }, {
10641
12089
  name: string;
10642
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
12090
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
10643
12091
  path?: string | undefined;
10644
12092
  backendConfig?: {
10645
12093
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -10661,6 +12109,14 @@ export declare const ConfigSchema: z.ZodObject<{
10661
12109
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
10662
12110
  hasExperimentTracking?: boolean | undefined;
10663
12111
  } | undefined;
12112
+ mcpServerConfig?: {
12113
+ language: "typescript" | "python";
12114
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
12115
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
12116
+ auth?: "none" | "oauth" | "apikey" | undefined;
12117
+ deployment?: "local" | "hosted" | undefined;
12118
+ stateful?: boolean | undefined;
12119
+ } | undefined;
10664
12120
  cliConfig?: {
10665
12121
  interactivity: "interactive" | "hybrid" | "args-only";
10666
12122
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -10725,7 +12181,7 @@ export declare const ConfigSchema: z.ZodObject<{
10725
12181
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
10726
12182
  name: z.ZodOptional<z.ZodString>;
10727
12183
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
10728
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
12184
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
10729
12185
  gameConfig: z.ZodOptional<z.ZodObject<{
10730
12186
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
10731
12187
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -10930,10 +12386,46 @@ export declare const ConfigSchema: z.ZodObject<{
10930
12386
  }, {
10931
12387
  scope?: "contracts" | undefined;
10932
12388
  }>>;
12389
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
12390
+ language: z.ZodEnum<["typescript", "python"]>;
12391
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
12392
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
12393
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
12394
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
12395
+ stateful: z.ZodDefault<z.ZodBoolean>;
12396
+ }, "strict", z.ZodTypeAny, {
12397
+ language: "typescript" | "python";
12398
+ transport: "sse" | "stdio" | "streamable-http";
12399
+ primitives: ("tools" | "resources" | "prompts")[];
12400
+ auth: "none" | "oauth" | "apikey";
12401
+ deployment: "local" | "hosted";
12402
+ stateful: boolean;
12403
+ }, {
12404
+ language: "typescript" | "python";
12405
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
12406
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
12407
+ auth?: "none" | "oauth" | "apikey" | undefined;
12408
+ deployment?: "local" | "hosted" | undefined;
12409
+ stateful?: boolean | undefined;
12410
+ }>, {
12411
+ language: "typescript" | "python";
12412
+ transport: "sse" | "stdio" | "streamable-http";
12413
+ primitives: ("tools" | "resources" | "prompts")[];
12414
+ auth: "none" | "oauth" | "apikey";
12415
+ deployment: "local" | "hosted";
12416
+ stateful: boolean;
12417
+ }, {
12418
+ language: "typescript" | "python";
12419
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
12420
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
12421
+ auth?: "none" | "oauth" | "apikey" | undefined;
12422
+ deployment?: "local" | "hosted" | undefined;
12423
+ stateful?: boolean | undefined;
12424
+ }>>;
10933
12425
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
10934
12426
  name: z.ZodString;
10935
12427
  description: z.ZodOptional<z.ZodString>;
10936
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
12428
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
10937
12429
  backendConfig: z.ZodOptional<z.ZodObject<{
10938
12430
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
10939
12431
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -11138,6 +12630,42 @@ export declare const ConfigSchema: z.ZodObject<{
11138
12630
  }, {
11139
12631
  scope?: "contracts" | undefined;
11140
12632
  }>>;
12633
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
12634
+ language: z.ZodEnum<["typescript", "python"]>;
12635
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
12636
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
12637
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
12638
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
12639
+ stateful: z.ZodDefault<z.ZodBoolean>;
12640
+ }, "strict", z.ZodTypeAny, {
12641
+ language: "typescript" | "python";
12642
+ transport: "sse" | "stdio" | "streamable-http";
12643
+ primitives: ("tools" | "resources" | "prompts")[];
12644
+ auth: "none" | "oauth" | "apikey";
12645
+ deployment: "local" | "hosted";
12646
+ stateful: boolean;
12647
+ }, {
12648
+ language: "typescript" | "python";
12649
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
12650
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
12651
+ auth?: "none" | "oauth" | "apikey" | undefined;
12652
+ deployment?: "local" | "hosted" | undefined;
12653
+ stateful?: boolean | undefined;
12654
+ }>, {
12655
+ language: "typescript" | "python";
12656
+ transport: "sse" | "stdio" | "streamable-http";
12657
+ primitives: ("tools" | "resources" | "prompts")[];
12658
+ auth: "none" | "oauth" | "apikey";
12659
+ deployment: "local" | "hosted";
12660
+ stateful: boolean;
12661
+ }, {
12662
+ language: "typescript" | "python";
12663
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
12664
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
12665
+ auth?: "none" | "oauth" | "apikey" | undefined;
12666
+ deployment?: "local" | "hosted" | undefined;
12667
+ stateful?: boolean | undefined;
12668
+ }>>;
11141
12669
  path: z.ZodOptional<z.ZodString>;
11142
12670
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
11143
12671
  step: z.ZodString;
@@ -11148,7 +12676,7 @@ export declare const ConfigSchema: z.ZodObject<{
11148
12676
  }>, "many">>;
11149
12677
  }, "strict", z.ZodTypeAny, {
11150
12678
  name: string;
11151
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
12679
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
11152
12680
  path?: string | undefined;
11153
12681
  backendConfig?: {
11154
12682
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -11170,6 +12698,14 @@ export declare const ConfigSchema: z.ZodObject<{
11170
12698
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
11171
12699
  hasExperimentTracking: boolean;
11172
12700
  } | undefined;
12701
+ mcpServerConfig?: {
12702
+ language: "typescript" | "python";
12703
+ transport: "sse" | "stdio" | "streamable-http";
12704
+ primitives: ("tools" | "resources" | "prompts")[];
12705
+ auth: "none" | "oauth" | "apikey";
12706
+ deployment: "local" | "hosted";
12707
+ stateful: boolean;
12708
+ } | undefined;
11173
12709
  cliConfig?: {
11174
12710
  interactivity: "interactive" | "hybrid" | "args-only";
11175
12711
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -11232,7 +12768,7 @@ export declare const ConfigSchema: z.ZodObject<{
11232
12768
  }[] | undefined;
11233
12769
  }, {
11234
12770
  name: string;
11235
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
12771
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
11236
12772
  path?: string | undefined;
11237
12773
  backendConfig?: {
11238
12774
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -11254,6 +12790,14 @@ export declare const ConfigSchema: z.ZodObject<{
11254
12790
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
11255
12791
  hasExperimentTracking?: boolean | undefined;
11256
12792
  } | undefined;
12793
+ mcpServerConfig?: {
12794
+ language: "typescript" | "python";
12795
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
12796
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
12797
+ auth?: "none" | "oauth" | "apikey" | undefined;
12798
+ deployment?: "local" | "hosted" | undefined;
12799
+ stateful?: boolean | undefined;
12800
+ } | undefined;
11257
12801
  cliConfig?: {
11258
12802
  interactivity: "interactive" | "hybrid" | "args-only";
11259
12803
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -11316,7 +12860,7 @@ export declare const ConfigSchema: z.ZodObject<{
11316
12860
  }[] | undefined;
11317
12861
  }>, {
11318
12862
  name: string;
11319
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
12863
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
11320
12864
  path?: string | undefined;
11321
12865
  backendConfig?: {
11322
12866
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -11338,6 +12882,14 @@ export declare const ConfigSchema: z.ZodObject<{
11338
12882
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
11339
12883
  hasExperimentTracking: boolean;
11340
12884
  } | undefined;
12885
+ mcpServerConfig?: {
12886
+ language: "typescript" | "python";
12887
+ transport: "sse" | "stdio" | "streamable-http";
12888
+ primitives: ("tools" | "resources" | "prompts")[];
12889
+ auth: "none" | "oauth" | "apikey";
12890
+ deployment: "local" | "hosted";
12891
+ stateful: boolean;
12892
+ } | undefined;
11341
12893
  cliConfig?: {
11342
12894
  interactivity: "interactive" | "hybrid" | "args-only";
11343
12895
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -11400,7 +12952,7 @@ export declare const ConfigSchema: z.ZodObject<{
11400
12952
  }[] | undefined;
11401
12953
  }, {
11402
12954
  name: string;
11403
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
12955
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
11404
12956
  path?: string | undefined;
11405
12957
  backendConfig?: {
11406
12958
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -11422,6 +12974,14 @@ export declare const ConfigSchema: z.ZodObject<{
11422
12974
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
11423
12975
  hasExperimentTracking?: boolean | undefined;
11424
12976
  } | undefined;
12977
+ mcpServerConfig?: {
12978
+ language: "typescript" | "python";
12979
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
12980
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
12981
+ auth?: "none" | "oauth" | "apikey" | undefined;
12982
+ deployment?: "local" | "hosted" | undefined;
12983
+ stateful?: boolean | undefined;
12984
+ } | undefined;
11425
12985
  cliConfig?: {
11426
12986
  interactivity: "interactive" | "hybrid" | "args-only";
11427
12987
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -11486,7 +13046,7 @@ export declare const ConfigSchema: z.ZodObject<{
11486
13046
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
11487
13047
  name: z.ZodOptional<z.ZodString>;
11488
13048
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
11489
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
13049
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
11490
13050
  gameConfig: z.ZodOptional<z.ZodObject<{
11491
13051
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
11492
13052
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -11691,10 +13251,46 @@ export declare const ConfigSchema: z.ZodObject<{
11691
13251
  }, {
11692
13252
  scope?: "contracts" | undefined;
11693
13253
  }>>;
13254
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
13255
+ language: z.ZodEnum<["typescript", "python"]>;
13256
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
13257
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
13258
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
13259
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
13260
+ stateful: z.ZodDefault<z.ZodBoolean>;
13261
+ }, "strict", z.ZodTypeAny, {
13262
+ language: "typescript" | "python";
13263
+ transport: "sse" | "stdio" | "streamable-http";
13264
+ primitives: ("tools" | "resources" | "prompts")[];
13265
+ auth: "none" | "oauth" | "apikey";
13266
+ deployment: "local" | "hosted";
13267
+ stateful: boolean;
13268
+ }, {
13269
+ language: "typescript" | "python";
13270
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
13271
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
13272
+ auth?: "none" | "oauth" | "apikey" | undefined;
13273
+ deployment?: "local" | "hosted" | undefined;
13274
+ stateful?: boolean | undefined;
13275
+ }>, {
13276
+ language: "typescript" | "python";
13277
+ transport: "sse" | "stdio" | "streamable-http";
13278
+ primitives: ("tools" | "resources" | "prompts")[];
13279
+ auth: "none" | "oauth" | "apikey";
13280
+ deployment: "local" | "hosted";
13281
+ stateful: boolean;
13282
+ }, {
13283
+ language: "typescript" | "python";
13284
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
13285
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
13286
+ auth?: "none" | "oauth" | "apikey" | undefined;
13287
+ deployment?: "local" | "hosted" | undefined;
13288
+ stateful?: boolean | undefined;
13289
+ }>>;
11694
13290
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
11695
13291
  name: z.ZodString;
11696
13292
  description: z.ZodOptional<z.ZodString>;
11697
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
13293
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
11698
13294
  backendConfig: z.ZodOptional<z.ZodObject<{
11699
13295
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
11700
13296
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -11899,6 +13495,42 @@ export declare const ConfigSchema: z.ZodObject<{
11899
13495
  }, {
11900
13496
  scope?: "contracts" | undefined;
11901
13497
  }>>;
13498
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
13499
+ language: z.ZodEnum<["typescript", "python"]>;
13500
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
13501
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
13502
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
13503
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
13504
+ stateful: z.ZodDefault<z.ZodBoolean>;
13505
+ }, "strict", z.ZodTypeAny, {
13506
+ language: "typescript" | "python";
13507
+ transport: "sse" | "stdio" | "streamable-http";
13508
+ primitives: ("tools" | "resources" | "prompts")[];
13509
+ auth: "none" | "oauth" | "apikey";
13510
+ deployment: "local" | "hosted";
13511
+ stateful: boolean;
13512
+ }, {
13513
+ language: "typescript" | "python";
13514
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
13515
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
13516
+ auth?: "none" | "oauth" | "apikey" | undefined;
13517
+ deployment?: "local" | "hosted" | undefined;
13518
+ stateful?: boolean | undefined;
13519
+ }>, {
13520
+ language: "typescript" | "python";
13521
+ transport: "sse" | "stdio" | "streamable-http";
13522
+ primitives: ("tools" | "resources" | "prompts")[];
13523
+ auth: "none" | "oauth" | "apikey";
13524
+ deployment: "local" | "hosted";
13525
+ stateful: boolean;
13526
+ }, {
13527
+ language: "typescript" | "python";
13528
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
13529
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
13530
+ auth?: "none" | "oauth" | "apikey" | undefined;
13531
+ deployment?: "local" | "hosted" | undefined;
13532
+ stateful?: boolean | undefined;
13533
+ }>>;
11902
13534
  path: z.ZodOptional<z.ZodString>;
11903
13535
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
11904
13536
  step: z.ZodString;
@@ -11909,7 +13541,7 @@ export declare const ConfigSchema: z.ZodObject<{
11909
13541
  }>, "many">>;
11910
13542
  }, "strict", z.ZodTypeAny, {
11911
13543
  name: string;
11912
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
13544
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
11913
13545
  path?: string | undefined;
11914
13546
  backendConfig?: {
11915
13547
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -11931,6 +13563,14 @@ export declare const ConfigSchema: z.ZodObject<{
11931
13563
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
11932
13564
  hasExperimentTracking: boolean;
11933
13565
  } | undefined;
13566
+ mcpServerConfig?: {
13567
+ language: "typescript" | "python";
13568
+ transport: "sse" | "stdio" | "streamable-http";
13569
+ primitives: ("tools" | "resources" | "prompts")[];
13570
+ auth: "none" | "oauth" | "apikey";
13571
+ deployment: "local" | "hosted";
13572
+ stateful: boolean;
13573
+ } | undefined;
11934
13574
  cliConfig?: {
11935
13575
  interactivity: "interactive" | "hybrid" | "args-only";
11936
13576
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -11993,7 +13633,7 @@ export declare const ConfigSchema: z.ZodObject<{
11993
13633
  }[] | undefined;
11994
13634
  }, {
11995
13635
  name: string;
11996
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
13636
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
11997
13637
  path?: string | undefined;
11998
13638
  backendConfig?: {
11999
13639
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -12015,6 +13655,14 @@ export declare const ConfigSchema: z.ZodObject<{
12015
13655
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
12016
13656
  hasExperimentTracking?: boolean | undefined;
12017
13657
  } | undefined;
13658
+ mcpServerConfig?: {
13659
+ language: "typescript" | "python";
13660
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
13661
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
13662
+ auth?: "none" | "oauth" | "apikey" | undefined;
13663
+ deployment?: "local" | "hosted" | undefined;
13664
+ stateful?: boolean | undefined;
13665
+ } | undefined;
12018
13666
  cliConfig?: {
12019
13667
  interactivity: "interactive" | "hybrid" | "args-only";
12020
13668
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -12077,7 +13725,7 @@ export declare const ConfigSchema: z.ZodObject<{
12077
13725
  }[] | undefined;
12078
13726
  }>, {
12079
13727
  name: string;
12080
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
13728
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
12081
13729
  path?: string | undefined;
12082
13730
  backendConfig?: {
12083
13731
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -12099,6 +13747,14 @@ export declare const ConfigSchema: z.ZodObject<{
12099
13747
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
12100
13748
  hasExperimentTracking: boolean;
12101
13749
  } | undefined;
13750
+ mcpServerConfig?: {
13751
+ language: "typescript" | "python";
13752
+ transport: "sse" | "stdio" | "streamable-http";
13753
+ primitives: ("tools" | "resources" | "prompts")[];
13754
+ auth: "none" | "oauth" | "apikey";
13755
+ deployment: "local" | "hosted";
13756
+ stateful: boolean;
13757
+ } | undefined;
12102
13758
  cliConfig?: {
12103
13759
  interactivity: "interactive" | "hybrid" | "args-only";
12104
13760
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -12161,7 +13817,7 @@ export declare const ConfigSchema: z.ZodObject<{
12161
13817
  }[] | undefined;
12162
13818
  }, {
12163
13819
  name: string;
12164
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
13820
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
12165
13821
  path?: string | undefined;
12166
13822
  backendConfig?: {
12167
13823
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -12183,6 +13839,14 @@ export declare const ConfigSchema: z.ZodObject<{
12183
13839
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
12184
13840
  hasExperimentTracking?: boolean | undefined;
12185
13841
  } | undefined;
13842
+ mcpServerConfig?: {
13843
+ language: "typescript" | "python";
13844
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
13845
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
13846
+ auth?: "none" | "oauth" | "apikey" | undefined;
13847
+ deployment?: "local" | "hosted" | undefined;
13848
+ stateful?: boolean | undefined;
13849
+ } | undefined;
12186
13850
  cliConfig?: {
12187
13851
  interactivity: "interactive" | "hybrid" | "args-only";
12188
13852
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -12277,7 +13941,7 @@ export declare const ConfigSchema: z.ZodObject<{
12277
13941
  project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
12278
13942
  name: z.ZodOptional<z.ZodString>;
12279
13943
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
12280
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
13944
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
12281
13945
  gameConfig: z.ZodOptional<z.ZodObject<{
12282
13946
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
12283
13947
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -12482,10 +14146,46 @@ export declare const ConfigSchema: z.ZodObject<{
12482
14146
  }, {
12483
14147
  scope?: "contracts" | undefined;
12484
14148
  }>>;
14149
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
14150
+ language: z.ZodEnum<["typescript", "python"]>;
14151
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
14152
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
14153
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
14154
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
14155
+ stateful: z.ZodDefault<z.ZodBoolean>;
14156
+ }, "strict", z.ZodTypeAny, {
14157
+ language: "typescript" | "python";
14158
+ transport: "sse" | "stdio" | "streamable-http";
14159
+ primitives: ("tools" | "resources" | "prompts")[];
14160
+ auth: "none" | "oauth" | "apikey";
14161
+ deployment: "local" | "hosted";
14162
+ stateful: boolean;
14163
+ }, {
14164
+ language: "typescript" | "python";
14165
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
14166
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
14167
+ auth?: "none" | "oauth" | "apikey" | undefined;
14168
+ deployment?: "local" | "hosted" | undefined;
14169
+ stateful?: boolean | undefined;
14170
+ }>, {
14171
+ language: "typescript" | "python";
14172
+ transport: "sse" | "stdio" | "streamable-http";
14173
+ primitives: ("tools" | "resources" | "prompts")[];
14174
+ auth: "none" | "oauth" | "apikey";
14175
+ deployment: "local" | "hosted";
14176
+ stateful: boolean;
14177
+ }, {
14178
+ language: "typescript" | "python";
14179
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
14180
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
14181
+ auth?: "none" | "oauth" | "apikey" | undefined;
14182
+ deployment?: "local" | "hosted" | undefined;
14183
+ stateful?: boolean | undefined;
14184
+ }>>;
12485
14185
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
12486
14186
  name: z.ZodString;
12487
14187
  description: z.ZodOptional<z.ZodString>;
12488
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
14188
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
12489
14189
  backendConfig: z.ZodOptional<z.ZodObject<{
12490
14190
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
12491
14191
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -12690,6 +14390,42 @@ export declare const ConfigSchema: z.ZodObject<{
12690
14390
  }, {
12691
14391
  scope?: "contracts" | undefined;
12692
14392
  }>>;
14393
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
14394
+ language: z.ZodEnum<["typescript", "python"]>;
14395
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
14396
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
14397
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
14398
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
14399
+ stateful: z.ZodDefault<z.ZodBoolean>;
14400
+ }, "strict", z.ZodTypeAny, {
14401
+ language: "typescript" | "python";
14402
+ transport: "sse" | "stdio" | "streamable-http";
14403
+ primitives: ("tools" | "resources" | "prompts")[];
14404
+ auth: "none" | "oauth" | "apikey";
14405
+ deployment: "local" | "hosted";
14406
+ stateful: boolean;
14407
+ }, {
14408
+ language: "typescript" | "python";
14409
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
14410
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
14411
+ auth?: "none" | "oauth" | "apikey" | undefined;
14412
+ deployment?: "local" | "hosted" | undefined;
14413
+ stateful?: boolean | undefined;
14414
+ }>, {
14415
+ language: "typescript" | "python";
14416
+ transport: "sse" | "stdio" | "streamable-http";
14417
+ primitives: ("tools" | "resources" | "prompts")[];
14418
+ auth: "none" | "oauth" | "apikey";
14419
+ deployment: "local" | "hosted";
14420
+ stateful: boolean;
14421
+ }, {
14422
+ language: "typescript" | "python";
14423
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
14424
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
14425
+ auth?: "none" | "oauth" | "apikey" | undefined;
14426
+ deployment?: "local" | "hosted" | undefined;
14427
+ stateful?: boolean | undefined;
14428
+ }>>;
12693
14429
  path: z.ZodOptional<z.ZodString>;
12694
14430
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
12695
14431
  step: z.ZodString;
@@ -12700,7 +14436,7 @@ export declare const ConfigSchema: z.ZodObject<{
12700
14436
  }>, "many">>;
12701
14437
  }, "strict", z.ZodTypeAny, {
12702
14438
  name: string;
12703
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
14439
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
12704
14440
  path?: string | undefined;
12705
14441
  backendConfig?: {
12706
14442
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -12722,6 +14458,14 @@ export declare const ConfigSchema: z.ZodObject<{
12722
14458
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
12723
14459
  hasExperimentTracking: boolean;
12724
14460
  } | undefined;
14461
+ mcpServerConfig?: {
14462
+ language: "typescript" | "python";
14463
+ transport: "sse" | "stdio" | "streamable-http";
14464
+ primitives: ("tools" | "resources" | "prompts")[];
14465
+ auth: "none" | "oauth" | "apikey";
14466
+ deployment: "local" | "hosted";
14467
+ stateful: boolean;
14468
+ } | undefined;
12725
14469
  cliConfig?: {
12726
14470
  interactivity: "interactive" | "hybrid" | "args-only";
12727
14471
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -12784,7 +14528,7 @@ export declare const ConfigSchema: z.ZodObject<{
12784
14528
  }[] | undefined;
12785
14529
  }, {
12786
14530
  name: string;
12787
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
14531
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
12788
14532
  path?: string | undefined;
12789
14533
  backendConfig?: {
12790
14534
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -12806,6 +14550,14 @@ export declare const ConfigSchema: z.ZodObject<{
12806
14550
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
12807
14551
  hasExperimentTracking?: boolean | undefined;
12808
14552
  } | undefined;
14553
+ mcpServerConfig?: {
14554
+ language: "typescript" | "python";
14555
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
14556
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
14557
+ auth?: "none" | "oauth" | "apikey" | undefined;
14558
+ deployment?: "local" | "hosted" | undefined;
14559
+ stateful?: boolean | undefined;
14560
+ } | undefined;
12809
14561
  cliConfig?: {
12810
14562
  interactivity: "interactive" | "hybrid" | "args-only";
12811
14563
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -12868,7 +14620,7 @@ export declare const ConfigSchema: z.ZodObject<{
12868
14620
  }[] | undefined;
12869
14621
  }>, {
12870
14622
  name: string;
12871
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
14623
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
12872
14624
  path?: string | undefined;
12873
14625
  backendConfig?: {
12874
14626
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -12890,6 +14642,14 @@ export declare const ConfigSchema: z.ZodObject<{
12890
14642
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
12891
14643
  hasExperimentTracking: boolean;
12892
14644
  } | undefined;
14645
+ mcpServerConfig?: {
14646
+ language: "typescript" | "python";
14647
+ transport: "sse" | "stdio" | "streamable-http";
14648
+ primitives: ("tools" | "resources" | "prompts")[];
14649
+ auth: "none" | "oauth" | "apikey";
14650
+ deployment: "local" | "hosted";
14651
+ stateful: boolean;
14652
+ } | undefined;
12893
14653
  cliConfig?: {
12894
14654
  interactivity: "interactive" | "hybrid" | "args-only";
12895
14655
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -12952,7 +14712,7 @@ export declare const ConfigSchema: z.ZodObject<{
12952
14712
  }[] | undefined;
12953
14713
  }, {
12954
14714
  name: string;
12955
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
14715
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
12956
14716
  path?: string | undefined;
12957
14717
  backendConfig?: {
12958
14718
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -12974,6 +14734,14 @@ export declare const ConfigSchema: z.ZodObject<{
12974
14734
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
12975
14735
  hasExperimentTracking?: boolean | undefined;
12976
14736
  } | undefined;
14737
+ mcpServerConfig?: {
14738
+ language: "typescript" | "python";
14739
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
14740
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
14741
+ auth?: "none" | "oauth" | "apikey" | undefined;
14742
+ deployment?: "local" | "hosted" | undefined;
14743
+ stateful?: boolean | undefined;
14744
+ } | undefined;
12977
14745
  cliConfig?: {
12978
14746
  interactivity: "interactive" | "hybrid" | "args-only";
12979
14747
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -13038,7 +14806,7 @@ export declare const ConfigSchema: z.ZodObject<{
13038
14806
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
13039
14807
  name: z.ZodOptional<z.ZodString>;
13040
14808
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
13041
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
14809
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
13042
14810
  gameConfig: z.ZodOptional<z.ZodObject<{
13043
14811
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
13044
14812
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -13243,10 +15011,46 @@ export declare const ConfigSchema: z.ZodObject<{
13243
15011
  }, {
13244
15012
  scope?: "contracts" | undefined;
13245
15013
  }>>;
15014
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
15015
+ language: z.ZodEnum<["typescript", "python"]>;
15016
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
15017
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
15018
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
15019
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
15020
+ stateful: z.ZodDefault<z.ZodBoolean>;
15021
+ }, "strict", z.ZodTypeAny, {
15022
+ language: "typescript" | "python";
15023
+ transport: "sse" | "stdio" | "streamable-http";
15024
+ primitives: ("tools" | "resources" | "prompts")[];
15025
+ auth: "none" | "oauth" | "apikey";
15026
+ deployment: "local" | "hosted";
15027
+ stateful: boolean;
15028
+ }, {
15029
+ language: "typescript" | "python";
15030
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
15031
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
15032
+ auth?: "none" | "oauth" | "apikey" | undefined;
15033
+ deployment?: "local" | "hosted" | undefined;
15034
+ stateful?: boolean | undefined;
15035
+ }>, {
15036
+ language: "typescript" | "python";
15037
+ transport: "sse" | "stdio" | "streamable-http";
15038
+ primitives: ("tools" | "resources" | "prompts")[];
15039
+ auth: "none" | "oauth" | "apikey";
15040
+ deployment: "local" | "hosted";
15041
+ stateful: boolean;
15042
+ }, {
15043
+ language: "typescript" | "python";
15044
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
15045
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
15046
+ auth?: "none" | "oauth" | "apikey" | undefined;
15047
+ deployment?: "local" | "hosted" | undefined;
15048
+ stateful?: boolean | undefined;
15049
+ }>>;
13246
15050
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
13247
15051
  name: z.ZodString;
13248
15052
  description: z.ZodOptional<z.ZodString>;
13249
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
15053
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
13250
15054
  backendConfig: z.ZodOptional<z.ZodObject<{
13251
15055
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
13252
15056
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -13451,6 +15255,42 @@ export declare const ConfigSchema: z.ZodObject<{
13451
15255
  }, {
13452
15256
  scope?: "contracts" | undefined;
13453
15257
  }>>;
15258
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
15259
+ language: z.ZodEnum<["typescript", "python"]>;
15260
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
15261
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
15262
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
15263
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
15264
+ stateful: z.ZodDefault<z.ZodBoolean>;
15265
+ }, "strict", z.ZodTypeAny, {
15266
+ language: "typescript" | "python";
15267
+ transport: "sse" | "stdio" | "streamable-http";
15268
+ primitives: ("tools" | "resources" | "prompts")[];
15269
+ auth: "none" | "oauth" | "apikey";
15270
+ deployment: "local" | "hosted";
15271
+ stateful: boolean;
15272
+ }, {
15273
+ language: "typescript" | "python";
15274
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
15275
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
15276
+ auth?: "none" | "oauth" | "apikey" | undefined;
15277
+ deployment?: "local" | "hosted" | undefined;
15278
+ stateful?: boolean | undefined;
15279
+ }>, {
15280
+ language: "typescript" | "python";
15281
+ transport: "sse" | "stdio" | "streamable-http";
15282
+ primitives: ("tools" | "resources" | "prompts")[];
15283
+ auth: "none" | "oauth" | "apikey";
15284
+ deployment: "local" | "hosted";
15285
+ stateful: boolean;
15286
+ }, {
15287
+ language: "typescript" | "python";
15288
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
15289
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
15290
+ auth?: "none" | "oauth" | "apikey" | undefined;
15291
+ deployment?: "local" | "hosted" | undefined;
15292
+ stateful?: boolean | undefined;
15293
+ }>>;
13454
15294
  path: z.ZodOptional<z.ZodString>;
13455
15295
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
13456
15296
  step: z.ZodString;
@@ -13461,7 +15301,7 @@ export declare const ConfigSchema: z.ZodObject<{
13461
15301
  }>, "many">>;
13462
15302
  }, "strict", z.ZodTypeAny, {
13463
15303
  name: string;
13464
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
15304
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
13465
15305
  path?: string | undefined;
13466
15306
  backendConfig?: {
13467
15307
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -13483,6 +15323,14 @@ export declare const ConfigSchema: z.ZodObject<{
13483
15323
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
13484
15324
  hasExperimentTracking: boolean;
13485
15325
  } | undefined;
15326
+ mcpServerConfig?: {
15327
+ language: "typescript" | "python";
15328
+ transport: "sse" | "stdio" | "streamable-http";
15329
+ primitives: ("tools" | "resources" | "prompts")[];
15330
+ auth: "none" | "oauth" | "apikey";
15331
+ deployment: "local" | "hosted";
15332
+ stateful: boolean;
15333
+ } | undefined;
13486
15334
  cliConfig?: {
13487
15335
  interactivity: "interactive" | "hybrid" | "args-only";
13488
15336
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -13545,7 +15393,7 @@ export declare const ConfigSchema: z.ZodObject<{
13545
15393
  }[] | undefined;
13546
15394
  }, {
13547
15395
  name: string;
13548
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
15396
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
13549
15397
  path?: string | undefined;
13550
15398
  backendConfig?: {
13551
15399
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -13567,6 +15415,14 @@ export declare const ConfigSchema: z.ZodObject<{
13567
15415
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
13568
15416
  hasExperimentTracking?: boolean | undefined;
13569
15417
  } | undefined;
15418
+ mcpServerConfig?: {
15419
+ language: "typescript" | "python";
15420
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
15421
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
15422
+ auth?: "none" | "oauth" | "apikey" | undefined;
15423
+ deployment?: "local" | "hosted" | undefined;
15424
+ stateful?: boolean | undefined;
15425
+ } | undefined;
13570
15426
  cliConfig?: {
13571
15427
  interactivity: "interactive" | "hybrid" | "args-only";
13572
15428
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -13629,7 +15485,7 @@ export declare const ConfigSchema: z.ZodObject<{
13629
15485
  }[] | undefined;
13630
15486
  }>, {
13631
15487
  name: string;
13632
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
15488
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
13633
15489
  path?: string | undefined;
13634
15490
  backendConfig?: {
13635
15491
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -13651,6 +15507,14 @@ export declare const ConfigSchema: z.ZodObject<{
13651
15507
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
13652
15508
  hasExperimentTracking: boolean;
13653
15509
  } | undefined;
15510
+ mcpServerConfig?: {
15511
+ language: "typescript" | "python";
15512
+ transport: "sse" | "stdio" | "streamable-http";
15513
+ primitives: ("tools" | "resources" | "prompts")[];
15514
+ auth: "none" | "oauth" | "apikey";
15515
+ deployment: "local" | "hosted";
15516
+ stateful: boolean;
15517
+ } | undefined;
13654
15518
  cliConfig?: {
13655
15519
  interactivity: "interactive" | "hybrid" | "args-only";
13656
15520
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -13713,7 +15577,7 @@ export declare const ConfigSchema: z.ZodObject<{
13713
15577
  }[] | undefined;
13714
15578
  }, {
13715
15579
  name: string;
13716
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
15580
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
13717
15581
  path?: string | undefined;
13718
15582
  backendConfig?: {
13719
15583
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -13735,6 +15599,14 @@ export declare const ConfigSchema: z.ZodObject<{
13735
15599
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
13736
15600
  hasExperimentTracking?: boolean | undefined;
13737
15601
  } | undefined;
15602
+ mcpServerConfig?: {
15603
+ language: "typescript" | "python";
15604
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
15605
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
15606
+ auth?: "none" | "oauth" | "apikey" | undefined;
15607
+ deployment?: "local" | "hosted" | undefined;
15608
+ stateful?: boolean | undefined;
15609
+ } | undefined;
13738
15610
  cliConfig?: {
13739
15611
  interactivity: "interactive" | "hybrid" | "args-only";
13740
15612
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -13799,7 +15671,7 @@ export declare const ConfigSchema: z.ZodObject<{
13799
15671
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13800
15672
  name: z.ZodOptional<z.ZodString>;
13801
15673
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
13802
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
15674
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
13803
15675
  gameConfig: z.ZodOptional<z.ZodObject<{
13804
15676
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
13805
15677
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -14004,10 +15876,46 @@ export declare const ConfigSchema: z.ZodObject<{
14004
15876
  }, {
14005
15877
  scope?: "contracts" | undefined;
14006
15878
  }>>;
15879
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
15880
+ language: z.ZodEnum<["typescript", "python"]>;
15881
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
15882
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
15883
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
15884
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
15885
+ stateful: z.ZodDefault<z.ZodBoolean>;
15886
+ }, "strict", z.ZodTypeAny, {
15887
+ language: "typescript" | "python";
15888
+ transport: "sse" | "stdio" | "streamable-http";
15889
+ primitives: ("tools" | "resources" | "prompts")[];
15890
+ auth: "none" | "oauth" | "apikey";
15891
+ deployment: "local" | "hosted";
15892
+ stateful: boolean;
15893
+ }, {
15894
+ language: "typescript" | "python";
15895
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
15896
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
15897
+ auth?: "none" | "oauth" | "apikey" | undefined;
15898
+ deployment?: "local" | "hosted" | undefined;
15899
+ stateful?: boolean | undefined;
15900
+ }>, {
15901
+ language: "typescript" | "python";
15902
+ transport: "sse" | "stdio" | "streamable-http";
15903
+ primitives: ("tools" | "resources" | "prompts")[];
15904
+ auth: "none" | "oauth" | "apikey";
15905
+ deployment: "local" | "hosted";
15906
+ stateful: boolean;
15907
+ }, {
15908
+ language: "typescript" | "python";
15909
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
15910
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
15911
+ auth?: "none" | "oauth" | "apikey" | undefined;
15912
+ deployment?: "local" | "hosted" | undefined;
15913
+ stateful?: boolean | undefined;
15914
+ }>>;
14007
15915
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
14008
15916
  name: z.ZodString;
14009
15917
  description: z.ZodOptional<z.ZodString>;
14010
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
15918
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
14011
15919
  backendConfig: z.ZodOptional<z.ZodObject<{
14012
15920
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
14013
15921
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -14212,6 +16120,42 @@ export declare const ConfigSchema: z.ZodObject<{
14212
16120
  }, {
14213
16121
  scope?: "contracts" | undefined;
14214
16122
  }>>;
16123
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
16124
+ language: z.ZodEnum<["typescript", "python"]>;
16125
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
16126
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
16127
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
16128
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
16129
+ stateful: z.ZodDefault<z.ZodBoolean>;
16130
+ }, "strict", z.ZodTypeAny, {
16131
+ language: "typescript" | "python";
16132
+ transport: "sse" | "stdio" | "streamable-http";
16133
+ primitives: ("tools" | "resources" | "prompts")[];
16134
+ auth: "none" | "oauth" | "apikey";
16135
+ deployment: "local" | "hosted";
16136
+ stateful: boolean;
16137
+ }, {
16138
+ language: "typescript" | "python";
16139
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
16140
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
16141
+ auth?: "none" | "oauth" | "apikey" | undefined;
16142
+ deployment?: "local" | "hosted" | undefined;
16143
+ stateful?: boolean | undefined;
16144
+ }>, {
16145
+ language: "typescript" | "python";
16146
+ transport: "sse" | "stdio" | "streamable-http";
16147
+ primitives: ("tools" | "resources" | "prompts")[];
16148
+ auth: "none" | "oauth" | "apikey";
16149
+ deployment: "local" | "hosted";
16150
+ stateful: boolean;
16151
+ }, {
16152
+ language: "typescript" | "python";
16153
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
16154
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
16155
+ auth?: "none" | "oauth" | "apikey" | undefined;
16156
+ deployment?: "local" | "hosted" | undefined;
16157
+ stateful?: boolean | undefined;
16158
+ }>>;
14215
16159
  path: z.ZodOptional<z.ZodString>;
14216
16160
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
14217
16161
  step: z.ZodString;
@@ -14222,7 +16166,7 @@ export declare const ConfigSchema: z.ZodObject<{
14222
16166
  }>, "many">>;
14223
16167
  }, "strict", z.ZodTypeAny, {
14224
16168
  name: string;
14225
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
16169
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
14226
16170
  path?: string | undefined;
14227
16171
  backendConfig?: {
14228
16172
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -14244,6 +16188,14 @@ export declare const ConfigSchema: z.ZodObject<{
14244
16188
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
14245
16189
  hasExperimentTracking: boolean;
14246
16190
  } | undefined;
16191
+ mcpServerConfig?: {
16192
+ language: "typescript" | "python";
16193
+ transport: "sse" | "stdio" | "streamable-http";
16194
+ primitives: ("tools" | "resources" | "prompts")[];
16195
+ auth: "none" | "oauth" | "apikey";
16196
+ deployment: "local" | "hosted";
16197
+ stateful: boolean;
16198
+ } | undefined;
14247
16199
  cliConfig?: {
14248
16200
  interactivity: "interactive" | "hybrid" | "args-only";
14249
16201
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -14306,7 +16258,7 @@ export declare const ConfigSchema: z.ZodObject<{
14306
16258
  }[] | undefined;
14307
16259
  }, {
14308
16260
  name: string;
14309
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
16261
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
14310
16262
  path?: string | undefined;
14311
16263
  backendConfig?: {
14312
16264
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -14328,6 +16280,14 @@ export declare const ConfigSchema: z.ZodObject<{
14328
16280
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
14329
16281
  hasExperimentTracking?: boolean | undefined;
14330
16282
  } | undefined;
16283
+ mcpServerConfig?: {
16284
+ language: "typescript" | "python";
16285
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
16286
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
16287
+ auth?: "none" | "oauth" | "apikey" | undefined;
16288
+ deployment?: "local" | "hosted" | undefined;
16289
+ stateful?: boolean | undefined;
16290
+ } | undefined;
14331
16291
  cliConfig?: {
14332
16292
  interactivity: "interactive" | "hybrid" | "args-only";
14333
16293
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -14390,7 +16350,7 @@ export declare const ConfigSchema: z.ZodObject<{
14390
16350
  }[] | undefined;
14391
16351
  }>, {
14392
16352
  name: string;
14393
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
16353
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
14394
16354
  path?: string | undefined;
14395
16355
  backendConfig?: {
14396
16356
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -14412,6 +16372,14 @@ export declare const ConfigSchema: z.ZodObject<{
14412
16372
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
14413
16373
  hasExperimentTracking: boolean;
14414
16374
  } | undefined;
16375
+ mcpServerConfig?: {
16376
+ language: "typescript" | "python";
16377
+ transport: "sse" | "stdio" | "streamable-http";
16378
+ primitives: ("tools" | "resources" | "prompts")[];
16379
+ auth: "none" | "oauth" | "apikey";
16380
+ deployment: "local" | "hosted";
16381
+ stateful: boolean;
16382
+ } | undefined;
14415
16383
  cliConfig?: {
14416
16384
  interactivity: "interactive" | "hybrid" | "args-only";
14417
16385
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -14474,7 +16442,7 @@ export declare const ConfigSchema: z.ZodObject<{
14474
16442
  }[] | undefined;
14475
16443
  }, {
14476
16444
  name: string;
14477
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
16445
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
14478
16446
  path?: string | undefined;
14479
16447
  backendConfig?: {
14480
16448
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -14496,6 +16464,14 @@ export declare const ConfigSchema: z.ZodObject<{
14496
16464
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
14497
16465
  hasExperimentTracking?: boolean | undefined;
14498
16466
  } | undefined;
16467
+ mcpServerConfig?: {
16468
+ language: "typescript" | "python";
16469
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
16470
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
16471
+ auth?: "none" | "oauth" | "apikey" | undefined;
16472
+ deployment?: "local" | "hosted" | undefined;
16473
+ stateful?: boolean | undefined;
16474
+ } | undefined;
14499
16475
  cliConfig?: {
14500
16476
  interactivity: "interactive" | "hybrid" | "args-only";
14501
16477
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -14560,7 +16536,7 @@ export declare const ConfigSchema: z.ZodObject<{
14560
16536
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
14561
16537
  name: z.ZodOptional<z.ZodString>;
14562
16538
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
14563
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
16539
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
14564
16540
  gameConfig: z.ZodOptional<z.ZodObject<{
14565
16541
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
14566
16542
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -14765,10 +16741,46 @@ export declare const ConfigSchema: z.ZodObject<{
14765
16741
  }, {
14766
16742
  scope?: "contracts" | undefined;
14767
16743
  }>>;
16744
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
16745
+ language: z.ZodEnum<["typescript", "python"]>;
16746
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
16747
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
16748
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
16749
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
16750
+ stateful: z.ZodDefault<z.ZodBoolean>;
16751
+ }, "strict", z.ZodTypeAny, {
16752
+ language: "typescript" | "python";
16753
+ transport: "sse" | "stdio" | "streamable-http";
16754
+ primitives: ("tools" | "resources" | "prompts")[];
16755
+ auth: "none" | "oauth" | "apikey";
16756
+ deployment: "local" | "hosted";
16757
+ stateful: boolean;
16758
+ }, {
16759
+ language: "typescript" | "python";
16760
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
16761
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
16762
+ auth?: "none" | "oauth" | "apikey" | undefined;
16763
+ deployment?: "local" | "hosted" | undefined;
16764
+ stateful?: boolean | undefined;
16765
+ }>, {
16766
+ language: "typescript" | "python";
16767
+ transport: "sse" | "stdio" | "streamable-http";
16768
+ primitives: ("tools" | "resources" | "prompts")[];
16769
+ auth: "none" | "oauth" | "apikey";
16770
+ deployment: "local" | "hosted";
16771
+ stateful: boolean;
16772
+ }, {
16773
+ language: "typescript" | "python";
16774
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
16775
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
16776
+ auth?: "none" | "oauth" | "apikey" | undefined;
16777
+ deployment?: "local" | "hosted" | undefined;
16778
+ stateful?: boolean | undefined;
16779
+ }>>;
14768
16780
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
14769
16781
  name: z.ZodString;
14770
16782
  description: z.ZodOptional<z.ZodString>;
14771
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
16783
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
14772
16784
  backendConfig: z.ZodOptional<z.ZodObject<{
14773
16785
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
14774
16786
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -14973,6 +16985,42 @@ export declare const ConfigSchema: z.ZodObject<{
14973
16985
  }, {
14974
16986
  scope?: "contracts" | undefined;
14975
16987
  }>>;
16988
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
16989
+ language: z.ZodEnum<["typescript", "python"]>;
16990
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
16991
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
16992
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
16993
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
16994
+ stateful: z.ZodDefault<z.ZodBoolean>;
16995
+ }, "strict", z.ZodTypeAny, {
16996
+ language: "typescript" | "python";
16997
+ transport: "sse" | "stdio" | "streamable-http";
16998
+ primitives: ("tools" | "resources" | "prompts")[];
16999
+ auth: "none" | "oauth" | "apikey";
17000
+ deployment: "local" | "hosted";
17001
+ stateful: boolean;
17002
+ }, {
17003
+ language: "typescript" | "python";
17004
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
17005
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
17006
+ auth?: "none" | "oauth" | "apikey" | undefined;
17007
+ deployment?: "local" | "hosted" | undefined;
17008
+ stateful?: boolean | undefined;
17009
+ }>, {
17010
+ language: "typescript" | "python";
17011
+ transport: "sse" | "stdio" | "streamable-http";
17012
+ primitives: ("tools" | "resources" | "prompts")[];
17013
+ auth: "none" | "oauth" | "apikey";
17014
+ deployment: "local" | "hosted";
17015
+ stateful: boolean;
17016
+ }, {
17017
+ language: "typescript" | "python";
17018
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
17019
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
17020
+ auth?: "none" | "oauth" | "apikey" | undefined;
17021
+ deployment?: "local" | "hosted" | undefined;
17022
+ stateful?: boolean | undefined;
17023
+ }>>;
14976
17024
  path: z.ZodOptional<z.ZodString>;
14977
17025
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
14978
17026
  step: z.ZodString;
@@ -14983,7 +17031,7 @@ export declare const ConfigSchema: z.ZodObject<{
14983
17031
  }>, "many">>;
14984
17032
  }, "strict", z.ZodTypeAny, {
14985
17033
  name: string;
14986
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
17034
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
14987
17035
  path?: string | undefined;
14988
17036
  backendConfig?: {
14989
17037
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -15005,6 +17053,14 @@ export declare const ConfigSchema: z.ZodObject<{
15005
17053
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
15006
17054
  hasExperimentTracking: boolean;
15007
17055
  } | undefined;
17056
+ mcpServerConfig?: {
17057
+ language: "typescript" | "python";
17058
+ transport: "sse" | "stdio" | "streamable-http";
17059
+ primitives: ("tools" | "resources" | "prompts")[];
17060
+ auth: "none" | "oauth" | "apikey";
17061
+ deployment: "local" | "hosted";
17062
+ stateful: boolean;
17063
+ } | undefined;
15008
17064
  cliConfig?: {
15009
17065
  interactivity: "interactive" | "hybrid" | "args-only";
15010
17066
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -15067,7 +17123,7 @@ export declare const ConfigSchema: z.ZodObject<{
15067
17123
  }[] | undefined;
15068
17124
  }, {
15069
17125
  name: string;
15070
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
17126
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
15071
17127
  path?: string | undefined;
15072
17128
  backendConfig?: {
15073
17129
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -15089,6 +17145,14 @@ export declare const ConfigSchema: z.ZodObject<{
15089
17145
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
15090
17146
  hasExperimentTracking?: boolean | undefined;
15091
17147
  } | undefined;
17148
+ mcpServerConfig?: {
17149
+ language: "typescript" | "python";
17150
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
17151
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
17152
+ auth?: "none" | "oauth" | "apikey" | undefined;
17153
+ deployment?: "local" | "hosted" | undefined;
17154
+ stateful?: boolean | undefined;
17155
+ } | undefined;
15092
17156
  cliConfig?: {
15093
17157
  interactivity: "interactive" | "hybrid" | "args-only";
15094
17158
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -15151,7 +17215,7 @@ export declare const ConfigSchema: z.ZodObject<{
15151
17215
  }[] | undefined;
15152
17216
  }>, {
15153
17217
  name: string;
15154
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
17218
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
15155
17219
  path?: string | undefined;
15156
17220
  backendConfig?: {
15157
17221
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -15173,6 +17237,14 @@ export declare const ConfigSchema: z.ZodObject<{
15173
17237
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
15174
17238
  hasExperimentTracking: boolean;
15175
17239
  } | undefined;
17240
+ mcpServerConfig?: {
17241
+ language: "typescript" | "python";
17242
+ transport: "sse" | "stdio" | "streamable-http";
17243
+ primitives: ("tools" | "resources" | "prompts")[];
17244
+ auth: "none" | "oauth" | "apikey";
17245
+ deployment: "local" | "hosted";
17246
+ stateful: boolean;
17247
+ } | undefined;
15176
17248
  cliConfig?: {
15177
17249
  interactivity: "interactive" | "hybrid" | "args-only";
15178
17250
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -15235,7 +17307,7 @@ export declare const ConfigSchema: z.ZodObject<{
15235
17307
  }[] | undefined;
15236
17308
  }, {
15237
17309
  name: string;
15238
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
17310
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
15239
17311
  path?: string | undefined;
15240
17312
  backendConfig?: {
15241
17313
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -15257,6 +17329,14 @@ export declare const ConfigSchema: z.ZodObject<{
15257
17329
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
15258
17330
  hasExperimentTracking?: boolean | undefined;
15259
17331
  } | undefined;
17332
+ mcpServerConfig?: {
17333
+ language: "typescript" | "python";
17334
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
17335
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
17336
+ auth?: "none" | "oauth" | "apikey" | undefined;
17337
+ deployment?: "local" | "hosted" | undefined;
17338
+ stateful?: boolean | undefined;
17339
+ } | undefined;
15260
17340
  cliConfig?: {
15261
17341
  interactivity: "interactive" | "hybrid" | "args-only";
15262
17342
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -15321,7 +17401,7 @@ export declare const ConfigSchema: z.ZodObject<{
15321
17401
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
15322
17402
  name: z.ZodOptional<z.ZodString>;
15323
17403
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
15324
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>>;
17404
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>>;
15325
17405
  gameConfig: z.ZodOptional<z.ZodObject<{
15326
17406
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
15327
17407
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -15526,10 +17606,46 @@ export declare const ConfigSchema: z.ZodObject<{
15526
17606
  }, {
15527
17607
  scope?: "contracts" | undefined;
15528
17608
  }>>;
17609
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
17610
+ language: z.ZodEnum<["typescript", "python"]>;
17611
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
17612
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
17613
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
17614
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
17615
+ stateful: z.ZodDefault<z.ZodBoolean>;
17616
+ }, "strict", z.ZodTypeAny, {
17617
+ language: "typescript" | "python";
17618
+ transport: "sse" | "stdio" | "streamable-http";
17619
+ primitives: ("tools" | "resources" | "prompts")[];
17620
+ auth: "none" | "oauth" | "apikey";
17621
+ deployment: "local" | "hosted";
17622
+ stateful: boolean;
17623
+ }, {
17624
+ language: "typescript" | "python";
17625
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
17626
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
17627
+ auth?: "none" | "oauth" | "apikey" | undefined;
17628
+ deployment?: "local" | "hosted" | undefined;
17629
+ stateful?: boolean | undefined;
17630
+ }>, {
17631
+ language: "typescript" | "python";
17632
+ transport: "sse" | "stdio" | "streamable-http";
17633
+ primitives: ("tools" | "resources" | "prompts")[];
17634
+ auth: "none" | "oauth" | "apikey";
17635
+ deployment: "local" | "hosted";
17636
+ stateful: boolean;
17637
+ }, {
17638
+ language: "typescript" | "python";
17639
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
17640
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
17641
+ auth?: "none" | "oauth" | "apikey" | undefined;
17642
+ deployment?: "local" | "hosted" | undefined;
17643
+ stateful?: boolean | undefined;
17644
+ }>>;
15529
17645
  services: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
15530
17646
  name: z.ZodString;
15531
17647
  description: z.ZodOptional<z.ZodString>;
15532
- projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3"]>;
17648
+ projectType: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension", "research", "data-science", "web3", "mcp-server"]>;
15533
17649
  backendConfig: z.ZodOptional<z.ZodObject<{
15534
17650
  apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
15535
17651
  dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
@@ -15734,6 +17850,42 @@ export declare const ConfigSchema: z.ZodObject<{
15734
17850
  }, {
15735
17851
  scope?: "contracts" | undefined;
15736
17852
  }>>;
17853
+ mcpServerConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
17854
+ language: z.ZodEnum<["typescript", "python"]>;
17855
+ transport: z.ZodDefault<z.ZodEnum<["stdio", "streamable-http", "sse"]>>;
17856
+ primitives: z.ZodDefault<z.ZodArray<z.ZodEnum<["tools", "resources", "prompts"]>, "many">>;
17857
+ auth: z.ZodDefault<z.ZodEnum<["none", "oauth", "apikey"]>>;
17858
+ deployment: z.ZodDefault<z.ZodEnum<["local", "hosted"]>>;
17859
+ stateful: z.ZodDefault<z.ZodBoolean>;
17860
+ }, "strict", z.ZodTypeAny, {
17861
+ language: "typescript" | "python";
17862
+ transport: "sse" | "stdio" | "streamable-http";
17863
+ primitives: ("tools" | "resources" | "prompts")[];
17864
+ auth: "none" | "oauth" | "apikey";
17865
+ deployment: "local" | "hosted";
17866
+ stateful: boolean;
17867
+ }, {
17868
+ language: "typescript" | "python";
17869
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
17870
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
17871
+ auth?: "none" | "oauth" | "apikey" | undefined;
17872
+ deployment?: "local" | "hosted" | undefined;
17873
+ stateful?: boolean | undefined;
17874
+ }>, {
17875
+ language: "typescript" | "python";
17876
+ transport: "sse" | "stdio" | "streamable-http";
17877
+ primitives: ("tools" | "resources" | "prompts")[];
17878
+ auth: "none" | "oauth" | "apikey";
17879
+ deployment: "local" | "hosted";
17880
+ stateful: boolean;
17881
+ }, {
17882
+ language: "typescript" | "python";
17883
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
17884
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
17885
+ auth?: "none" | "oauth" | "apikey" | undefined;
17886
+ deployment?: "local" | "hosted" | undefined;
17887
+ stateful?: boolean | undefined;
17888
+ }>>;
15737
17889
  path: z.ZodOptional<z.ZodString>;
15738
17890
  exports: z.ZodOptional<z.ZodArray<z.ZodObject<{
15739
17891
  step: z.ZodString;
@@ -15744,7 +17896,7 @@ export declare const ConfigSchema: z.ZodObject<{
15744
17896
  }>, "many">>;
15745
17897
  }, "strict", z.ZodTypeAny, {
15746
17898
  name: string;
15747
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
17899
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
15748
17900
  path?: string | undefined;
15749
17901
  backendConfig?: {
15750
17902
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -15766,6 +17918,14 @@ export declare const ConfigSchema: z.ZodObject<{
15766
17918
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
15767
17919
  hasExperimentTracking: boolean;
15768
17920
  } | undefined;
17921
+ mcpServerConfig?: {
17922
+ language: "typescript" | "python";
17923
+ transport: "sse" | "stdio" | "streamable-http";
17924
+ primitives: ("tools" | "resources" | "prompts")[];
17925
+ auth: "none" | "oauth" | "apikey";
17926
+ deployment: "local" | "hosted";
17927
+ stateful: boolean;
17928
+ } | undefined;
15769
17929
  cliConfig?: {
15770
17930
  interactivity: "interactive" | "hybrid" | "args-only";
15771
17931
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -15828,7 +17988,7 @@ export declare const ConfigSchema: z.ZodObject<{
15828
17988
  }[] | undefined;
15829
17989
  }, {
15830
17990
  name: string;
15831
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
17991
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
15832
17992
  path?: string | undefined;
15833
17993
  backendConfig?: {
15834
17994
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -15850,6 +18010,14 @@ export declare const ConfigSchema: z.ZodObject<{
15850
18010
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
15851
18011
  hasExperimentTracking?: boolean | undefined;
15852
18012
  } | undefined;
18013
+ mcpServerConfig?: {
18014
+ language: "typescript" | "python";
18015
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
18016
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
18017
+ auth?: "none" | "oauth" | "apikey" | undefined;
18018
+ deployment?: "local" | "hosted" | undefined;
18019
+ stateful?: boolean | undefined;
18020
+ } | undefined;
15853
18021
  cliConfig?: {
15854
18022
  interactivity: "interactive" | "hybrid" | "args-only";
15855
18023
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
@@ -15912,7 +18080,7 @@ export declare const ConfigSchema: z.ZodObject<{
15912
18080
  }[] | undefined;
15913
18081
  }>, {
15914
18082
  name: string;
15915
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
18083
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
15916
18084
  path?: string | undefined;
15917
18085
  backendConfig?: {
15918
18086
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -15934,6 +18102,14 @@ export declare const ConfigSchema: z.ZodObject<{
15934
18102
  interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
15935
18103
  hasExperimentTracking: boolean;
15936
18104
  } | undefined;
18105
+ mcpServerConfig?: {
18106
+ language: "typescript" | "python";
18107
+ transport: "sse" | "stdio" | "streamable-http";
18108
+ primitives: ("tools" | "resources" | "prompts")[];
18109
+ auth: "none" | "oauth" | "apikey";
18110
+ deployment: "local" | "hosted";
18111
+ stateful: boolean;
18112
+ } | undefined;
15937
18113
  cliConfig?: {
15938
18114
  interactivity: "interactive" | "hybrid" | "args-only";
15939
18115
  distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
@@ -15996,7 +18172,7 @@ export declare const ConfigSchema: z.ZodObject<{
15996
18172
  }[] | undefined;
15997
18173
  }, {
15998
18174
  name: string;
15999
- projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3";
18175
+ projectType: "web-app" | "mobile-app" | "backend" | "cli" | "library" | "game" | "data-pipeline" | "ml" | "browser-extension" | "research" | "data-science" | "web3" | "mcp-server";
16000
18176
  path?: string | undefined;
16001
18177
  backendConfig?: {
16002
18178
  apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
@@ -16018,6 +18194,14 @@ export declare const ConfigSchema: z.ZodObject<{
16018
18194
  interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
16019
18195
  hasExperimentTracking?: boolean | undefined;
16020
18196
  } | undefined;
18197
+ mcpServerConfig?: {
18198
+ language: "typescript" | "python";
18199
+ transport?: "sse" | "stdio" | "streamable-http" | undefined;
18200
+ primitives?: ("tools" | "resources" | "prompts")[] | undefined;
18201
+ auth?: "none" | "oauth" | "apikey" | undefined;
18202
+ deployment?: "local" | "hosted" | undefined;
18203
+ stateful?: boolean | undefined;
18204
+ } | undefined;
16021
18205
  cliConfig?: {
16022
18206
  interactivity: "interactive" | "hybrid" | "args-only";
16023
18207
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;