MCP Catalogs
Home

metorial-platform vs everything

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

metorial-platform
by metorial
everything
by modelcontextprotocol
Stars★ 207★ 85,748
30d uses
Score4977
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

metorial-platform · Summary

Metorial is an enterprise-grade MCP platform that connects AI models to thousands of APIs and tools with one-liner SDKs.

everything · Summary

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

metorial-platform · Use cases

  • Building enterprise-grade AI applications that need to connect to multiple data sources and APIs
  • Developers who want to simplify MCP integration in their AI projects without dealing with server configurations
  • Teams requiring monitoring and debugging capabilities for their AI integrations across thousands of MCP servers

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

metorial-platform · Install

Installation

SDK Installation

Install the SDK for your preferred language:

# For JavaScript/TypeScript
npm install @metorial/node

# For Python
pip install metorial

Self-Hosting

  1. Clone the repository:

``bash git clone https://github.com/metorial/metorial-platform.git cd metorial-platform ``

  1. Set up environment variables in .env file
  1. Run with Docker:

``bash docker-compose up -d ``

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.