MCP Catalogs
Home

everything vs simplelocalize-mcp-server

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

everything
by modelcontextprotocol
simplelocalize-mcp-server
by simplelocalize
Stars★ 85,748★ 0
30d uses
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
TranslationDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

everything · Summary

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

simplelocalize-mcp-server · Summary

MCP server that provides AI-powered tools for managing translations through the SimpleLocalize API.

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

simplelocalize-mcp-server · Use cases

  • Automating translation updates in AI-powered development environments
  • Managing multilingual content through natural language commands
  • Synchronizing translation keys across development workflows

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

simplelocalize-mcp-server · Install

Installation

To use the MCP server, you'll need an API key from SimpleLocalize > Settings > Credentials -> Project API Key.

For Claude Desktop, add this to your MCP config:

{
  "servers": {
    "simplelocalize": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@simplelocalize/simplelocalize-mcp", "--api-key=SIMPLELOCALIZE_API_KEY"]
    }
  }
}

For Cursor, VS Code, GitHub Copilot, Windsurf, see the project README for detailed setup guides.

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