Semantic Search MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Semantic Search MCP Serverfind where we handle JWT token validation"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CodeSight
AI-powered document search engine — hybrid BM25 + vector + RRF retrieval with pluggable LLM answer synthesis.
Quick Start
# Install
pip install -e ".[dev]"
# Install with AST chunking support (Python/JS/TS — higher MRR for code)
pip install -e ".[dev,ast]"
# Index a folder of documents
python -m codesight index /path/to/documents
# Search (hybrid BM25 + vector)
python -m codesight search "payment terms" /path/to/documents
# Filter by file type
python -m codesight search "auth" /path/to/code --glob '*.py'
# Ask a question (requires LLM API key — see Configuration)
python -m codesight ask "What are the payment terms?" /path/to/documents
# Machine-readable output
python -m codesight search "query" /path --json
# Check index status
python -m codesight status /path/to/documents
# Launch the web chat UI
pip install -e ".[demo]"
python -m codesight demoRelated MCP server: semantic-search-mcp
Python API
from codesight import CodeSight
engine = CodeSight("/path/to/documents")
engine.index() # Index all files
results = engine.search("payment terms") # Hybrid search
answer = engine.ask("What are the payment terms?") # Search + LLM answer
status = engine.status() # Index freshness checkThe package root exports CodeSight, ServerConfig, Answer, IndexStats,
RepoStatus, and SearchResult for stable public imports.
Supported Formats
Format | Extension | Parser |
| pymupdf | |
Word |
| python-docx |
PowerPoint |
| python-pptx |
Code |
| AST-based (tree-sitter) + regex fallback |
Text |
| Built-in |
Architecture
Document Parsing: PDF, DOCX, PPTX text extraction with page/section metadata
Chunking: AST-based (tree-sitter) for Python/JS/TS — function/class boundaries preserve semantic units. Regex fallback for other languages. Paragraph-aware splitting for documents.
Embeddings:
voyage-code-3(API, code files) /all-MiniLM-L6-v2(local, docs). Auto-detected viaVOYAGE_API_KEY.Vector Store: LanceDB (serverless, file-based)
Keyword Search: SQLite FTS5 sidecar
Retrieval: Hybrid BM25 + vector + code-vector with RRF merge → metadata filename boost → optional reranker
Reranker:
voyage rerank-2(code-aware, auto-enabled withVOYAGE_API_KEY). Localms-marcocross-encoder opt-in only.Answer Synthesis: Pluggable LLM backend (Claude, Azure OpenAI, OpenAI, Ollama)
See ARCHITECTURE.md for the full system tour.
Performance
Measured on the holusight codebase (96 files, 20 representative queries):
Configuration | Hit Rate | MRR@10 |
Baseline (fixed windows, no reranker) | 52.5% | 0.352 |
+ VPRF + voyage reranker | 100% | 0.599 |
+ AST chunking (tree-sitter) | 100% | 0.823 |
+ voyage-code-3 + voyage rerank-2 | 100% | 0.793 |
AST chunking is the largest single lever (+0.224 MRR). The local ms-marco cross-encoder hurts code retrieval — only enable it explicitly.
Configuration
Variable | Default | Description |
| — | Required for Claude backend ( |
| — | Enables voyage-code-3 embeddings + voyage rerank-2 (recommended for code) |
|
| LLM backend: |
|
| Where indexes are stored |
|
| Embedding model (overridden by voyage-code-3 for code when key set) |
|
| LLM model for answers |
|
| Enable reranker |
|
| Reranker backend: |
|
| Index freshness threshold (seconds) |
|
| Logging verbosity |
See .env.example for all options.
Stack
Python 3.11+
LanceDB + SQLite FTS5
sentence-transformers + voyage-code-3 (optional)
tree-sitter (optional — AST chunking for Python/JS/TS)
Anthropic Claude API / Azure OpenAI / OpenAI / Ollama
Streamlit (web chat UI)
pymupdf, python-docx, python-pptx (document parsing)
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/camilojourney/holusight'
If you have feedback or need assistance with the MCP directory API, please join our Discord server