MCP Catalogs
Home

video-research-mcp vs everything

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

video-research-mcp
by Galbaz1
everything
by modelcontextprotocol
Stars★ 21★ 85,748
30d uses
Score4377
Official
Categories
MediaAI / LLM ToolsKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit2 mo agothis month

video-research-mcp · Summary

MCP server providing 51 video analysis and research tools through Gemini 3.1 Pro with Weaviate integration.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

video-research-mcp · Use cases

  • Analyze meeting recordings to extract action items and decisions
  • Research topics with evidence-tiered findings from multiple sources
  • Create explainer videos from research with TTS narration
  • Build and query a knowledge graph from research outputs

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

video-research-mcp · Install

npx video-research-mcp@latest
export GEMINI_API_KEY="your-key-here"

For Claude Desktop configuration:

{
  "mcpServers": {
    "video-research": {
      "command": "uvx",
      "args": ["video-research-mcp"],
      "env": { "GEMINI_API_KEY": "${GEMINI_API_KEY}" }
    }
  }
}

Requires Python >= 3.11, uv, Node.js >= 16, and a Google AI API key.

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.