MCP Catalogs
Home

redm-mcp-public vs filesystem

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

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

redm-mcp-public · Summary

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

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"
        ]
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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