A high-performance MCP (Model Context Protocol) server for semantic code search, written in Rust.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"code-sage": {
"command": "cargo",
"args": [
"run",
"--",
"code-sage"
]
}
}
}
Run in terminal:
claude mcp add code-sage cargo run -- code-sage
Add to .cursor/mcp.json:
{
"mcpServers": {
"code-sage": {
"command": "cargo",
"args": [
"run",
"--",
"code-sage"
]
}
}
}