MCP Catalogs
Home

everything vs strale

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

everything
by modelcontextprotocol
strale
by strale-io
Stars★ 85,748★ 3
30d uses
Score7739
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

strale · Summary

Strale provides MCP server with 290+ quality-scored AI agent capabilities including compliance checks, financial validation and Web3 security.

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

strale · Use cases

  • AI agents performing company due diligence checks with KYB verification
  • Web3 applications accessing wallet risk scoring and token honeypot detection
  • Compliance systems validating EU VAT numbers and sanctions screening

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

strale · Install

Streamable HTTP (recommended)

{
  "mcpServers": {
    "strale": {
      "type": "streamableHttp",
      "url": "https://api.strale.io/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_your_key_here"
      }
    }
  }
}

Local (stdio)

{
  "mcpServers": {
    "strale": {
      "command": "npx",
      "args": ["-y", "strale-mcp"],
      "env": {
        "STRALE_API_KEY": "your_api_key"
      }
    }
  }
}

Five capabilities are available without an API key: email-validate, dns-lookup, json-repair, url-to-markdown, iban-validate.

Comparison generated from public README + GitHub signals. Last updated automatically.