Skip to content

Commit ae56e61

Browse files
authored
Merge pull request #15 from LLMTooling/jules/update-readme-local-install
Update README.md with local install instructions and ctags wrapper link
2 parents 60bc705 + 8bc3bee commit ae56e61

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<div align="center">
1717

18-
Code Search MCP is a high-performance Model Context Protocol server that enables LLMs to intelligently search and analyze codebases across 12 programming languages with comprehensive AST search support for 15 languages. Built on universal-ctags, ripgrep, and ast-grep, it provides fast symbol search, structural AST pattern matching, text search, file search, and dependency analysis with persistent caching for 80%+ faster startup times.
18+
Code Search MCP is a high-performance Model Context Protocol server that enables LLMs to intelligently search and analyze codebases across 12 programming languages with comprehensive AST search support for 15 languages. Built on our [universal-ctags wrapper](https://github.com/LLMTooling/universal-ctags-node), ripgrep, and ast-grep, it provides fast symbol search, structural AST pattern matching, text search, file search, and dependency analysis with persistent caching for 80%+ faster startup times.
1919

2020
</div>
2121

@@ -591,7 +591,15 @@ choco install ripgrep
591591
</div>
592592

593593
```bash
594-
npm install -g code-search-mcp
594+
# Clone the repository
595+
git clone https://github.com/GhostTypes/code-search-mcp.git
596+
cd code-search-mcp
597+
598+
# Install dependencies
599+
npm install
600+
601+
# Build the project
602+
npm run build
595603
```
596604

597605
<div align="center">
@@ -604,7 +612,10 @@ Add to your MCP settings file (e.g., `claude_desktop_config.json`):
604612
{
605613
"mcpServers": {
606614
"code-search": {
607-
"command": "code-search-mcp"
615+
"command": "node",
616+
"args": [
617+
"/path/to/code-search-mcp/dist/index.js"
618+
]
608619
}
609620
}
610621
}

0 commit comments

Comments
 (0)