MCP Catalogs
Home

redm-mcp-public

by Cmoen11·1·Score 37

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

developer-toolsai-llmother
0
Forks
0
Open issues
1 mo ago
Last commit
2d ago
Indexed

Overview

redm-mcp is an MCP server that provides documentation and lookup capabilities for RedM/RDR3 development. It offers native hash ↔ name lookups, semantic search across the codebase, and documentation for frameworks like VORP, RSGCore, and oxmysql. The server also includes data from rdr3_discoveries community project with information about peds, weapons, animations, AI flags, props, and audio banks. It runs as a hosted HTTP endpoint at https://redm-mcp.fivem.no/mcp with no authentication required.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Help developers understand native function calls like Citizen.InvokeNative(0x09C28F828EE674FA)
you:Search for functionality by behavior rather than exact names (e.g., 'teleport player')
you:Browse and query RedM/RDR3 framework documentation for VORP, RSGCore, and oxmysql
you:Is this server free to use?
you:Where is the source code?

When to choose this

Choose this MCP server if you're developing for RedM/RDR3 and need precise native function lookups and framework documentation within your AI coding environment.

When NOT to choose this

Avoid this if you need access to the server source code (it's proprietary) or if you're working with game development platforms other than RedM/RDR3.

Tools this server exposes

6 tools extracted from the README
  • lookup_native

    Exact lookup by hash or name for native functions

  • semantic_search

    Search by behavior or concept

  • grep_docs

    Regex/literal grep across raw doc files

  • list_namespaces

    List categories and namespaces

  • browse

    List document paths under a category/namespace

  • get_document

    Fetch full markdown for a doc path

Comparable tools

gta-mcpfivem-docs-mcpnative-lookup-apigame-dev-tools-mcp

Installation

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

FAQ

Is this server free to use?
Yes, the hosted endpoint at https://redm-mcp.fivem.no/mcp is free to use with no authentication required.
Where is the source code?
The repository contains only installation/usage documentation and serves as the issue tracker. The server source code is proprietary and not distributed.

Compare redm-mcp-public with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.