MCP Catalogs
Home

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.

ai-llmknowledge-graphother
25
Forks
4
Open issues
this month
Last commit
2d ago
Indexed

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:

you:Retrieving relevant documents based on semantic search queries
you:Converting PDFs and other documents to structured Markdown format
you:Performing deep research with web search integration
you:What file formats can the extract tool handle?
you:Do I need an account with Vectorize to use this MCP server?

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 README
  • retrieve

    Perform vector search and retrieve documents

  • extract

    Extract text from a document and chunk it into Markdown format

  • deep-research

    Generate a Private Deep Research from your pipeline

Comparable tools

chromadb-mcppinecone-mcpweaviate-mcpsupabase-mcp

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@latest
Claude 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.