mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
ea7c136e49
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>
15 lines
296 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|