From 5e7a763b486645df4561e03226144a7b4af82cb1 Mon Sep 17 00:00:00 2001 From: "MagicMock/mock.effective_git_name/130407769905136" Date: Fri, 29 May 2026 07:22:23 +0000 Subject: [PATCH] Add Serena MCP server config Wires Serena (https://github.com/oraios/serena) as an MCP server for Claude Code sessions in this repo. Provides symbol-level code navigation via language servers, complementing grep-based search. Runs via uvx with --project "." so it picks up whatever clone of the repo Claude is launched from (works for human checkouts and Clayde's transient clones alike). --- .mcp.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..8bec88a --- /dev/null +++ b/.mcp.json @@ -0,0 +1,17 @@ +{ + "mcpServers": { + "serena": { + "command": "uvx", + "args": [ + "--from", + "git+https://github.com/oraios/serena", + "serena", + "start-mcp-server", + "--context", + "ide-assistant", + "--project", + "." + ] + } + } +}