vexor
The Vexor MCP server provides semantic file search and indexing as native tools for any MCP-compatible AI agent or client (Claude Code, Cursor, Windsurf, etc.).
Semantic File Search (
vexor_search): Find files by describing what they do or contain in natural language, without knowing exact names or paths. Returns ranked results with relevance scores, file paths, line ranges, and text previews.Configurable result count (1–50, default 5), recursive search, file extension filters, gitignore-style exclusion patterns, hidden file inclusion, and
.gitignorerespectIndex granularity modes:
auto,name,head,brief,full,code(AST-chunked), oroutline(Markdown headings)Auto-indexes on first search when
auto_indexis enabled
Index Building/Refreshing (
vexor_index): Explicitly build or refresh the semantic index for a directory. Useful for CI warmup or when auto-indexing is disabled. Returns index status (stored,up_to_date, orempty) and the number of files indexed. Supports the same granularity modes and filtering options as search.
Provides embedding models (Gemini) for semantic search indexing.
Provides embedding models for semantic search indexing via OpenAI's API.
Vexor
Vexor is a semantic search engine that builds reusable indexes over files and code. It supports configurable embedding and reranking providers, and exposes the same core through a Python API, a CLI tool, and an MCP server.
Featured In
Vexor has been recognized and featured by the community:
Ruan Yifeng's Weekly (Issue #379) - A leading tech newsletter in the Chinese developer community.
Awesome Claude Skills - Curated list of best-in-class skills for AI agents.
Awesome MCP Servers - Curated list of Model Context Protocol servers.
Awesome CLI Apps - Curated list of command-line apps.
Related MCP server: semantic-search-mcp
Why Vexor?
When you remember what a file does but forget its name or location, Vexor finds it instantly—no grep patterns or directory traversal needed.
Designed for both humans and AI coding assistants, enabling semantic file discovery in autonomous agent workflows.
Install
Download standalone binary from releases (no Python required), or:
pip install vexor # also works with pipx, uvQuick Start
0. Guided Setup (Recommended)
vexor initThe wizard also runs automatically on first use when no config exists.
1. Search
vexor "api client config" # defaults to search current directory
# or explicit path:
vexor search "api client config" --path ~/projects/demo --top 5
# in-memory search only:
vexor search "api client config" --no-cache Vexor auto-indexes on first search. Example output:
Vexor semantic file search results
──────────────────────────────────
# Similarity File path Lines Preview
1 0.923 ./src/config_loader.py - config loader entrypoint
2 0.871 ./src/utils/config_parse.py - parse config helpers
3 0.809 ./tests/test_config_loader.py - tests for config loader2. Explicit Index (Optional)
vexor index # indexes current directory
# or explicit path:
vexor index --path ~/projects/demo --mode codeUseful for CI warmup or when auto_index is disabled.
Python API
Vexor can also be imported and used directly from Python:
from vexor import index, search
index(path=".", mode="head")
response = search("config loader", path=".", mode="name")
for hit in response.results:
print(hit.path, hit.score)By default it reads ~/.vexor/config.json. For runtime config overrides, cache
controls, and per-call options, see docs/api/python.md.
AI Agent Skill
This repo includes a skill for AI agents to use Vexor effectively:
vexor install --skills claude # Claude Code
vexor install --skills codex # CodexSkill source: plugins/vexor/skills/vexor-cli
MCP Server
The Agent Skill and the MCP server provide the same core capability — pickone per agent.
The skill teaches shell-capable agents (Claude Code, Codex) to drive the full CLI and assumes vexor is installed on PATH; the MCP server exposes search as native tools, works in any MCP client (Cursor, Windsurf, Zed, ...), and can bootstrap without prior setup via uvx and environment variables.
Vexor ships a built-in MCP stdio server, so any MCP-capable agent can use semantic file search as a native tool:
claude mcp add vexor -- vexor mcp # Claude Code
codex mcp add vexor -- vexor mcp # CodexOr configure manually in any MCP client, optionally supplying the API key
and any config overrides via env (no vexor init needed):
{
"mcpServers": {
"vexor": {
"command": "vexor",
"args": ["mcp"],
"env": {
"VEXOR_API_KEY": "sk-...",
"VEXOR_CONFIG_JSON": "{\"provider\": \"gemini\", \"rerank\": \"bm25\"}"
}
}
}
}The server exposes two tools: vexor_search (semantic file search) and vexor_index (explicit index warm-up). No extra dependencies are required. Vexor is listed on the official MCP registry as io.github.scarletkc/vexor. See docs/mcp.md for tool schemas, environment variables, and client setup details.
Configuration
vexor init # guided setup (recommended)
vexor config --set-api-key "YOUR_KEY" # or env: VEXOR_API_KEY / OPENAI_API_KEY / ...
vexor config --set-provider openai # default; also gemini/voyageai/custom/local
vexor config --rerank hybrid # optional: fuse exact keyword + semantic ranking
vexor config --show # view current settingsConfig lives in ~/.vexor/config.json. Any field can also be injected via the VEXOR_CONFIG_JSON environment variable (useful for MCP client configs and CI), and fully offline use is supported through local embedding models.
See docs/configuration.md for the complete reference: all config commands, API keys and environment variables, rerank strategies (hybrid / BM25 / FlashRank / remote), remote vs local providers, embedding dimensions, and offline local model setup.
CLI Reference
Everyday usage fits in vexor "query", vexor search, and vexor index (see Quick Start). The full command table, common flags, index modes (--mode auto/name/head/brief/full/code/outline), .vexorignore files, project-local indexes (vexor index --local), cache behavior, and porcelain output format are documented in docs/cli.md.
Documentation
Configuration — providers, API keys, rerank, embedding dimensions, local models
CLI reference — commands, flags, index modes, cache behavior
MCP server — client setup, environment variables, tool schemas
Python API — programmatic usage
Contributing
Contributions, issues, and PRs welcome! Commit messages and PR titles follow Conventional Commits (e.g. feat(mcp): add stdio server). Star if you find it helpful.
Star History
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables semantic code search across codebases with automatic incremental indexing. Searches return relevant code snippets with file paths and line numbers based on natural language queries.Last updated1810Apache 2.0
- AlicenseAqualityDmaintenanceProvides semantic code search over codebases using local embeddings with natural language queries. Supports hybrid search, file watching, and respects .gitignore.Last updated115MIT
- Alicense-qualityDmaintenanceIndexes codebases using semantic embeddings for natural language search, enabling developers to find code with queries like 'how does authentication work'.Last updated1MIT
- Flicense-qualityCmaintenanceEnables semantic search over personal files using natural language, with optional AI summarization, all running locally.Last updated
Related MCP Connectors
Academic paper search, scientific literature, citation analysis, arXiv & semantic related-work.
Search a billion+ documents — papers, books, code, legal cases, forums, Wikipedia, and more.
Enterprise code intelligence for M&A, security audits, and tech debt. Hosted server with 200k free.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/scarletkc/vexor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server