
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
mcp-server-vectorsearch
Advanced tools
Node.js server implementing Model Context Protocol (MCP) for local vector search operations.
Note: The server will only allow operations on files and documents specified via args
.
vector://search
: Vector search operations interfaceindex_file
path
(string)index_directory
path
(string)extensions
(string[]): File extensions to index, defaults to ['.txt', '.pdf']excludePatterns
(string[]): Patterns to excludesearch
query
(string): Search querynumResults
(number): Number of results to return (default: 5)threshold
(number): Similarity threshold (default: 0.7)clear_index
get_index_stats
list_indexed_files
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"vectorsearch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vectorsearch",
"/path/to/documents/directory"
]
}
}
}
{
"mcpServers": {
"vectorsearch": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/documents/directory,dst=/data/documents",
"mcp/vectorsearch",
"/data/documents"
]
}
}
}
For quick installation, click the installation buttons below:
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P
and typing Preferences: Open Settings (JSON)
.
Optionally, you can add it to a file called .vscode/mcp.json
in your workspace. This will allow you to share the configuration with others.
{
"mcp": {
"servers": {
"vectorsearch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vectorsearch",
"${workspaceFolder}"
]
}
}
}
}
{
"mcp": {
"servers": {
"vectorsearch": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=${workspaceFolder},dst=/data/documents",
"mcp/vectorsearch",
"/data/documents"
]
}
}
}
}
Docker build:
docker build -t mcp/vectorsearch -f Dockerfile .
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
FAQs
MCP server for local vector search operations
The npm package mcp-server-vectorsearch receives a total of 363 weekly downloads. As such, mcp-server-vectorsearch popularity was classified as not popular.
We found that mcp-server-vectorsearch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.