MCP Catalogs
Home

fetch vs vectorize-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

fetch
by modelcontextprotocol
vectorize-mcp-server
by vectorize-io
Stars★ 85,748★ 106
30d uses
Score7647
Official
Categories
Web ScrapingAI / LLM ToolsProductivity
AI / LLM ToolsKnowledge GraphOther
LanguageTypeScriptJavaScript
Last committhis monththis month

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

vectorize-mcp-server · Summary

Vectorize MCP server enables vector search, text extraction, and deep research through the Model Context Protocol.

fetch · Use cases

  • LLMs reading news articles and blogs
  • Content analysis of web pages
  • Retrieving information from public websites
  • Chunked reading of large web documents

vectorize-mcp-server · Use cases

  • Retrieving relevant documents based on semantic search queries
  • Converting PDFs and other documents to structured Markdown format
  • Performing deep research with web search integration

fetch · Install

Installation

**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:

uvx mcp-server-fetch

**Using PIP** Install via pip:

pip install mcp-server-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}

vectorize-mcp-server · Install

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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.