Skip to main content
Glama
vectorize-io

Vectorize

Official
by vectorize-io

MCP 서버 벡터화

고급 벡터 검색 및 텍스트 추출을 위해 Vectorize 와 통합된 MCP(Model Context Protocol) 서버 구현입니다.

설치

npx로 실행

지엑스피1

Related MCP server: @sanderkooger/mcp-server-ragdocs

Claude/Windsurf/Cursor/Cline 구성

{
  "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"
      }
    }
  }
}

도구

문서 검색

벡터 검색을 수행하고 문서를 검색합니다(공식 API 참조):

{
  "name": "retrieve",
  "arguments": {
    "question": "Financial health of the company",
    "k": 5
  }
}

텍스트 추출 및 청킹(모든 파일을 마크다운으로)

문서에서 텍스트를 추출하여 Markdown 형식으로 묶습니다(공식 API 참조):

{
  "name": "extract",
  "arguments": {
    "base64document": "base64-encoded-document",
    "contentType": "application/pdf"
  }
}

심층 연구

파이프라인에서 개인 심층 연구를 생성합니다(공식 API 참조):

{
  "name": "deep-research",
  "arguments": {
    "query": "Generate a financial status report about the company",
    "webSearch": true
  }
}

개발

npm install
npm run dev

기여하다

  1. 저장소를 포크하세요

  2. 기능 브랜치를 생성하세요

  3. 풀 리퀘스트 제출

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context
    6 npm
    265
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    An MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context. Uses Ollama or OpenAI to generate embeddings. Docker files included
    6 npm
    30
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    A complete MCP server for Retrieval-Augmented Generation with file management and vector memory for agents. Supports multiple document formats (PDF, DOCX, TXT, MD, CSV, JSON) with semantic search using Hugging Face embeddings and ChromaDB for efficient vector storage.
    11
    3 npm
    1
    MIT