Просмотр исходного кода

update settings for serena mcp

Yuki Takei 2 месяцев назад
Родитель
Сommit
6b449a8fc2
3 измененных файлов с 4 добавлено и 13 удалено
  1. 2 1
      .mcp.json
  2. 2 2
      .serena/project.yml
  3. 0 10
      .serena/serena_config.yml

+ 2 - 1
.mcp.json

@@ -14,7 +14,8 @@
         "--context",
         "ide-assistant",
         "--project",
-        "."
+        ".",
+        "--enable-web-dashboard=false"
       ],
       "env": {}
     }

+ 2 - 2
.serena/project.yml

@@ -22,7 +22,7 @@ read_only: false
 
 # list of tool names to exclude. We recommend not excluding any tools, see the readme for more details.
 # Below is the complete list of tools for convenience.
-# To make sure you have the latest list of tools, and to view their descriptions, 
+# To make sure you have the latest list of tools, and to view their descriptions,
 # execute `uv run scripts/print_tool_overview.py`.
 #
 #  * `activate_project`: Activates a project by name.
@@ -59,7 +59,7 @@ read_only: false
 #  * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
 #  * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
 #  * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
-excluded_tools: []
+excluded_tools: ["check_onboarding_performed", "execute_shell_command", "initial_instructions", "onboarding", "prepare_for_new_conversation", "read_memory", "write_memory", "list_memories", "delete_memory"]
 
 # initial prompt for the project. It will always be given to the LLM upon activating the project
 # (contrary to the memories, which are loaded on demand).

+ 0 - 10
.serena/serena_config.yml

@@ -1,10 +0,0 @@
-web_dashboard: false
-# whether to open the Serena web dashboard (which will be accessible through your web browser) that
-# shows Serena's current session logs - as an alternative to the GUI log window which
-# is supported on all platforms.
-
-web_dashboard_open_on_launch: false
-# whether to open a browser window with the web dashboard when Serena starts (provided that web_dashboard
-# is enabled). If set to False, you can still open the dashboard manually by navigating to
-# http://localhost:24282/dashboard/ in your web browser (24282 = 0x5EDA, SErena DAshboard).
-# If you have multiple instances running, a higher port will be used; try port 24283, 24284, etc.