
Setup Serena Mcp
Configure the Serena MCP server so your coding agent gets semantic symbol search and structured code editing across a repo.
Overview
setup-serena-mcp is an agent skill most often used in Build (also Ship review, Operate iterate) that walks through Serena MCP server configuration for semantic code tools.
Install
npx skills add https://github.com/neolabhq/context-engineering-kit --skill setup-serena-mcpWhat is this skill?
- Three placement modes: git-shared project, personal CLAUDE.local.md, or global ~/.claude/CLAUDE.md
- Pre-flight check for existing Serena access via find_symbol or get_symbols_overview
- Pulls official Serena README and running docs from GitHub and oraios.github.io
- Argument-hint for client-specific configuration preferences
- Guides .gitignore hygiene when using local-only config paths
- 3 documented configuration placement options (shared project, local project, global user)
Adoption & trust: 522 installs on skills.sh; 1.1k GitHub stars; 2/3 security scanners passed (skills.sh audits).
What problem does it solve?
Your agent cannot reliably find or edit code by symbol because the Serena MCP server is missing or misconfigured for your project or client.
Who is it for?
Indie and solo developers standardizing Claude/Cursor MCP stacks on medium-to-large repos that benefit from symbol-level navigation.
Skip if: Teams that only need generic file search without MCP, or environments where outbound doc fetches and MCP installs are blocked by policy.
When should I use this skill?
User needs Serena MCP for semantic code retrieval and editing, or agent lacks find_symbol / get_symbols_overview access.
What do I get? / Deliverables
Serena is configured at the chosen scope with CLAUDE.md updates and verified tool access so find_symbol-style retrieval works in daily agent sessions.
- Serena MCP configuration for chosen scope (project, local, or global)
- Updated CLAUDE.md or CLAUDE.local.md with setup and usage notes
Recommended Skills
Journey fit
Spans multiple journey phases - primary shelf plus alternate fits below.
Serena setup belongs on the agent-tooling shelf because it is the first place builders wire MCP servers into Claude/Cursor workflows before daily coding. Agent-tooling captures MCP installation, CLAUDE.md injection, and verification of tools like find_symbol—not generic backend feature work.
Where it fits
Wire Serena MCP into CLAUDE.md on day one so the agent can navigate a monorepo by symbols during feature work.
Re-verify Serena tools before a release so review prompts can target named symbols instead of whole-file dumps.
Restore MCP config after a client upgrade when find_symbol calls suddenly fail in production bugfix sessions.
How it compares
A setup workflow for an MCP semantic layer, not a replacement for git, LSP, or plain ripgrep search skills.
Common Questions / FAQ
Who is setup-serena-mcp for?
Solo builders and small teams using context-engineering kits who want Serena’s semantic retrieval and editing tools available to their coding agent.
When should I use setup-serena-mcp?
At Build when adding agent-tooling to a repo, when onboarding a new machine, or at Operate when MCP tools stop resolving—after checking whether find_symbol already works.
Is setup-serena-mcp safe to install?
It instructs fetching public Serena docs and writing local config; review the Security Audits panel on this page and your org rules before enabling MCP servers with filesystem or repo access.
SKILL.md
READMESKILL.md - Setup Serena Mcp
User Input: ```text $ARGUMENTS ``` # Guide for setup Serena MCP server ## 1. Determine setup context Ask the user where they want to store the configuration: **Options:** 1. **Project level (shared via git)** - Configuration tracked in version control, shared with team - CLAUDE.md updates go to: `./CLAUDE.md` 2. **Project level (personal preferences)** - Configuration stays local, not tracked in git - CLAUDE.md updates go to: `./CLAUDE.local.md` - Verify these files are listed in `.gitignore`, add them if not 3. **User level (global)** - Configuration applies to all projects for this user - CLAUDE.md updates go to: `~/.claude/CLAUDE.md` Store the user's choice and use the appropriate paths in subsequent steps. ## 2. Check if Serena MCP server is already setup Check whether you have access to Serena MCP server by attempting to use one of its tools (e.g., `find_symbol` or `get_symbols_overview`). If no access, proceed with setup. ## 3. Load Serena documentation Read the following documentation to understand Serena's capabilities and setup process: - Load <https://raw.githubusercontent.com/oraios/serena/refs/heads/main/README.md> to understand what Serena is and its capabilities - Load <https://oraios.github.io/serena/02-usage/020_running.html> to learn how to run Serena - Load <https://oraios.github.io/serena/02-usage/030_clients.html> to learn how to configure your MCP client - Load <https://oraios.github.io/serena/02-usage/040_workflow.html> to learn how to setup Serena for your project ## 4. Guide user through setup process Based on the loaded documentation: 1. **Check prerequisites**: Verify that `uv` is installed (required for running Serena) 2. **Identify client type**: Determine which MCP client the user is using (Claude Code, Claude Desktop, Cursor, VSCode, etc.) 3. **Provide setup instructions**: Guide through the configuration specific to their client if it not already configured 4. **Setup project**: Guide through the project setup process if it not already setup 5. **Start indexing project**: Guide through the project indexing process if it was just setup 6. If MCP was just setup, ask user to restart Claude Code to load the new MCP server, write to user explisit instructions, including "exit claude code console, then run 'claude --continue' and then write "continue" to continue setup process" 7. **Test connection**: Verify that Serena tools are accessible after setup 1. If not yet, run initial_instructions 2. Check if onboarding was performered, if not then run it. 3. Then try to read any file After adding MCP server, but before testings connection write to user this message EXACTLY: ```markdown You must restart Claude Code to load the new MCP server: 1. Exit Claude Code console (type exit or press Ctrl+C) 2. Run claude --continue 3. Type "continue" to resume setup After restart, I will: - Verify Serena tools are accessible - Run initial_instructions if needed - Perform onboarding for this project (if not already done) ``` ## 5. Update CLAUDE.md file Use the path determined in step 1. Once Serena is successfully set up, update the appropriate CLAUDE.md file with the following content EXACTLY: ```markdown ### Use Serena MCP for Semantic Code Analysis instead of regular code search and editing Serena MCP is available for advanced code retrieval and editing capabilities. **When to use Serena:** - Symbol-based code navigation (find definitions, references, implementations) - Precise code manipulation in structured codebases - Prefer symbol-based operations over file-based grep/sed when available **Key tools:** - `find_symbol` - Find symbol by name across the codebase - `find_referencing_symbols` - Find all symbols that reference a given symbol - `get_sym