diff --git a/src/mcp/prompts/core/index.ts b/src/mcp/prompts/core/index.ts index 7daffbee29e..90358458b71 100644 --- a/src/mcp/prompts/core/index.ts +++ b/src/mcp/prompts/core/index.ts @@ -1,10 +1,6 @@ import { init } from "./init"; import { deploy } from "./deploy"; -import { isEnabled } from "../../../experiments"; -const corePrompts = [deploy]; -if (isEnabled("mcpalpha")) { - corePrompts.push(init); -} +const corePrompts = [deploy, init]; export { corePrompts };