Files
trailofbits-buttercup/.mcp.json
Dan Guido ea7c136e49 chore: add Serena MCP server configuration
Add configuration for Serena semantic code navigation:
- .mcp.json - MCP server configuration for Claude Code
- .serena/project.yml - Project-specific settings (roots, languages, ignores)
- .serena/.gitignore - Ignore cache directory

Serena provides semantic code navigation tools that understand symbol
relationships, making it easier to explore and modify the codebase.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 10:30:11 +01:00

15 lines
296 B
JSON

{
"mcpServers": {
"serena": {
"command": "uvx",
"args": [
"--from", "git+https://github.com/oraios/serena",
"serena", "start-mcp-server",
"--context", "claude-code",
"--project", ".",
"--enable-web-dashboard", "false"
]
}
}
}