MCP Catalogs
Home

DINO-X-MCP vs everything

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

DINO-X-MCP
by IDEA-Research
everything
by modelcontextprotocol
Stars★ 114★ 85,748
30d uses
Score4477
Official
Categories
AI / LLM ToolsMediaDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit7 mo agothis month

DINO-X-MCP · Summary

DINO-X MCP server enables LLMs with visual perception through image object detection, localization, and captioning APIs.

everything · Summary

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

DINO-X-MCP · Use cases

  • Visual content analysis with object detection and localization
  • Inventory management through automated object counting
  • Human pose estimation for fitness and healthcare applications

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

DINO-X-MCP · Install

Installation

Option A: Official Hosted Streamable HTTP (Recommended)

Add to your MCP client config:

{
  "mcpServers": {
    "dinox-mcp": {
      "url": "https://mcp.deepdataspace.com/mcp?key=your-api-key"
    }
  }
}

Option B: Use the NPM package locally (STDIO)

Install Node.js first, then configure:

{
  "mcpServers": {
    "dinox-mcp": {
      "command": "npx",
      "args": ["-y", "@deepdataspace/dinox-mcp"],
      "env": {
        "DINOX_API_KEY": "your-api-key-here",
        "IMAGE_STORAGE_DIRECTORY": "/path/to/your/image/directory"
      }
    }
  }
}

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.