vectorize-mcp-server
by vectorize-io·★ 106·Score 47
Vectorize MCP server enables vector search, text extraction, and deep research through the Model Context Protocol.
Overview
The Vectorize MCP Server is a well-implemented JavaScript server that provides three main tools: document retrieval through vector search, text extraction and chunking from various file formats, and deep research capabilities. It integrates with the Vectorize platform, requiring API credentials for configuration. The server offers comprehensive documentation with installation instructions for multiple environments including VS Code and various AI clients.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you're already using Vectorize or need vector database capabilities with document extraction and research tools.
When NOT to choose this
Avoid if you need open-source vector databases without vendor lock-in or if you don't want to rely on external API services.
Tools this server exposes
3 tools extracted from the READMEretrievePerform vector search and retrieve documents
extractExtract text from a document and chunk it into Markdown format
deep-researchGenerate a Private Deep Research from your pipeline
Comparable tools
Installation
Installation
Running with npx
export VECTORIZE_ORG_ID=YOUR_ORG_ID
export VECTORIZE_TOKEN=YOUR_TOKEN
export VECTORIZE_PIPELINE_ID=YOUR_PIPELINE_ID
npx -y @vectorize-io/vectorize-mcp-server@latestClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"vectorize": {
"command": "npx",
"args": ["-y", "@vectorize-io/vectorize-mcp-server@latest"],
"env": {
"VECTORIZE_ORG_ID": "your-org-id",
"VECTORIZE_TOKEN": "your-token",
"VECTORIZE_PIPELINE_ID": "your-pipeline-id"
}
}
}
}FAQ
- What file formats can the extract tool handle?
- The extract tool can handle any file format that Vectorize supports, with the contentType parameter specifying the format (e.g., application/pdf for PDF files).
- Do I need an account with Vectorize to use this MCP server?
- Yes, you need a Vectorize account with organization ID, API token, and pipeline ID configured as environment variables.
Compare vectorize-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.