From 729e033fef5397d50d8b7baaf6241e33a4493b17 Mon Sep 17 00:00:00 2001 From: Eyal Toledano Date: Wed, 9 Apr 2025 19:21:07 -0400 Subject: [PATCH] chore: removes unnecessary output from the createcontentResponse of initialize-project. --- mcp-server/src/tools/initialize-project.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mcp-server/src/tools/initialize-project.js b/mcp-server/src/tools/initialize-project.js index b81fd72c..5f1c653c 100644 --- a/mcp-server/src/tools/initialize-project.js +++ b/mcp-server/src/tools/initialize-project.js @@ -81,10 +81,9 @@ export function registerInitializeProjectTool(server) { // Return a standard success response manually return createContentResponse({ - message: 'Project initialized successfully.', + message: 'Taskmaster successfully initialized for this project.', next_step: - 'Now that the project is initialized, the next step is to create the tasks by parsing a PRD. This will create the tasks folder and the initial task files. The parse-prd tool will required a prd.txt file as input in scripts/prd.txt. You can create a prd.txt file by asking the user about their idea, and then using the scripts/example_prd.txt file as a template to genrate a prd.txt file in scripts/. You can then use the parse-prd tool to create the tasks. So: step 1 after initialization is to create a prd.txt file in scripts/prd.txt. Step 2 is to use the parse-prd tool to create the tasks. Do not bother looking for tasks after initialization, just use the parse-prd tool to create the tasks after creating a prd.txt from which to parse the tasks.', - output: output + 'Now that the project is initialized, the next step is to create the tasks by parsing a PRD. This will create the tasks folder and the initial task files. The parse-prd tool will required a prd.txt file as input in scripts/prd.txt. You can create a prd.txt file by asking the user about their idea, and then using the scripts/example_prd.txt file as a template to genrate a prd.txt file in scripts/. You can then use the parse-prd tool to create the tasks. So: step 1 after initialization is to create a prd.txt file in scripts/prd.txt. Step 2 is to use the parse-prd tool to create the tasks. Do not bother looking for tasks after initialization, just use the parse-prd tool to create the tasks after creating a prd.txt from which to parse the tasks.' }); } catch (error) { // Catch errors from execSync or timeouts