MCP Catalogs
Home

redm-mcp-public vs everything

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

redm-mcp-public
by Cmoen11
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3777
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScript
Last commit1 mo agothis month

redm-mcp-public · Summary

MCP server providing RedM/RDR3 native lookups, semantic search and framework documentation.

everything · Summary

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

redm-mcp-public · Use cases

  • Help developers understand native function calls like Citizen.InvokeNative(0x09C28F828EE674FA)
  • Search for functionality by behavior rather than exact names (e.g., 'teleport player')
  • Browse and query RedM/RDR3 framework documentation for VORP, RSGCore, and oxmysql

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

redm-mcp-public · Install

Installation

HTTP Transport

Connect to the hosted HTTP endpoint: https://redm-mcp.fivem.no/mcp

VS Code / Cursor

Click the install badges in the README for one-click setup.

Claude Code

claude mcp add --transport http redm-mcp https://redm-mcp.fivem.no/mcp

Claude Desktop

{
  "mcpServers": {
    "redm-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://redm-mcp.fivem.no/mcp"
      ]
    }
  }
}

VS Code (Copilot / Continue)

{
  "servers": {
    "redm-mcp": {
      "type": "http",
      "url": "https://redm-mcp.fivem.no/mcp"
    }
  }
}

Zed

{
  "context_servers": {
    "redm-mcp": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "mcp-remote",
          "https://redm-mcp.fivem.no/mcp"
        ]
      }
    }
  }
}

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.