turbovec-mcp
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., "@turbovec-mcpfind where we parse the CSV file"
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.
turbovec-mcp
Local semantic code search over MCP, backed by turbovec (Google's TurboQuant: ~16x vector compression, fast on Apple Silicon). Bring your own OpenAI-compatible embeddings endpoint - nothing leaves your machine.
code -> chunker -> [your embeddings endpoint] -> turbovec index -> searchembedder: any OpenAI-compatible
/v1/embeddings(a llama.cpp server, etc). Dimension is auto-detected.store: turbovec
IdMapIndex, persisted per-repo under.turbovec/.orchestrator: this MCP server (chunk, embed, index, search).
Install / run
uvx turbovec-mcp # run directly, no install (recommended)
# or
pipx install turbovec-mcpRequires a running embeddings endpoint. Example with llama.cpp:
llama-server -m nomic-embed-text-v1.5.Q8_0.gguf --embedding --pooling mean --port 8081Related MCP server: Claude Context Local
Configure (environment)
var | default | meaning |
|
| OpenAI-compatible base URL |
|
| model name sent in the request |
|
| bearer token (unused locally, must be non-empty) |
| "" | prefix for documents (nomic: |
| "" | prefix for queries (nomic: |
|
| turbovec quantization bits (2 or 4) |
|
| lines per chunk |
|
| overlap between chunks |
|
| skip files larger than this |
| "" | comma list of extra extensions to index |
| "" | comma list of extra dirs to skip |
Register with an MCP client
opencode (opencode.jsonc):
"mcp": {
"turbovec": {
"type": "local",
"command": ["uvx", "turbovec-mcp"],
"environment": {
"TURBOVEC_EMBED_ENDPOINT": "http://127.0.0.1:8081/v1",
"TURBOVEC_EMBED_MODEL": "nomic-embed-text-v1.5.Q8_0.gguf",
"TURBOVEC_QUERY_PREFIX": "search_query: ",
"TURBOVEC_DOC_PREFIX": "search_document: "
},
"enabled": true
}
}Claude Code:
claude mcp add turbovec -- uvx turbovec-mcpTools
tv_index(path=".")- (re)build the index for a repo. Run once before searching, and after large changes.tv_search(query, k=10, path=".", compact=False)- semantic search; returnspath, line range, score, and (unless compact) the chunk text.tv_status(path=".")- whether a repo is indexed + basic stats.
The index lives in <repo>/.turbovec/ - add it to .gitignore.
License
BSD-3-Clause
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
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/potatofacee/turbovec-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server