Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 659 Bytes

File metadata and controls

48 lines (37 loc) · 659 Bytes

code_search_mcp

To install dependencies:

bun install

To run:

bun run build

Then dist/server will be created.

Configuration

claude_desktop_config.json:

{
    "mcpServers": {
        "code_search": {
            "command": "ABSOLUTE/PATH/TO/code_search_mcp/dist/server"
        }
    }
}

For development, you can run without building:

.vscode/mcp.json:

{
    "servers": {
        "code_search": {
            "type": "stdio",
            "command": "bun",
            "args": [
                "run",
                "/ABSOLUTE/PATH/TO/code_search_mcp/server.ts"
            ]
        }
    }
}