MCP Catalogs
Home

Veo-4-API vs everything

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

Veo-4-API
by Anil-matcha
everything
by modelcontextprotocol
Stars★ 147★ 85,748
30d uses
Score4877
Official
Categories
MediaAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

Veo-4-API · Summary

Python wrapper for Veo 4 API with MCP server for AI-generated 4K videos with integrated audio and character consistency.

everything · Summary

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

Veo-4-API · Use cases

  • Content creators generating AI videos for social media with consistent characters
  • Developers integrating video generation capabilities into their applications
  • AI assistants creating custom video content in response to user requests

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

Veo-4-API · Install

Installation

Via Pip (Recommended)

pip install veo-4-api

Configuration

Create a .env file in the root directory and add your [MuAPI](https://muapi.ai) API key:

MUAPI_API_KEY=your_muapi_api_key_here

Running the MCP Server

  1. Ensure MUAPI_API_KEY is set in your environment.
  2. Run the server:

``bash python3 mcp_server.py ``

  1. To test with the MCP Inspector:

``bash npx -y @modelcontextprotocol/inspector python3 mcp_server.py ``

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "veo-4": {
      "command": "python3",
      "args": ["/path/to/Veo-4-API/mcp_server.py"]
    }
  }
}

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.