mcpserver.lol
registry/redm-mcp
Connection check verified live · 27h ago

redm-mcp

RedM / RDR3 docs MCP server: native lookups, semantic search, VORP, RSGCore, oxmysql.

Tools 10
GitHub stars 3
Installs / wk
Licence
Transport streamable-http
Last checked 27h ago

Tools & capabilities

10 tools

Read from the running server on 27h ago.

asset_lookup read-only hashnametypelimitsearch
Resolve a RedM game-data asset (ped model, weapon, object, door, vehicle) by exact name, 32-bit hash, or partial-name search. O(1) structured lookup against pre-parsed discoveries…
browse read-only categorynamespace
Enumerate doc paths in a category/namespace. Use to discover what exists before calling `get_document` or a targeted `grep_docs`. NOT a content search — use `semantic_search` for b…
get_document read-only path*heading
Fetch full markdown of a doc by `path` (as returned by `browse`, `semantic_search`, or `grep_docs`). Use to retrieve full content after a search snippet looks promising. Pass `head…
get_invoke_guide read-only language*
Load the calling-convention reference for RedM/RDR3 natives in `js` or `lua`. Call ONCE per session before writing native-calling code — every native doc page only shows Lua exampl…
grep_docs read-only limitpattern*categoryfilesOnlymultilinecontextAfter +4
Find an EXACT literal token in raw doc files (markdown + lua). Use for specific weapon/ped/animation/prop/interior/zone names (`weapon_pistol_volcanic`, `a_c_bear_01`, `p_campfire0…
list_namespaces read-only category
Orient yourself: list available doc categories and their namespaces. Use once at session start (or when unsure) before applying a `category=` / `namespace=` filter to `browse` / `s…
lookup_native read-only hashnamelimitnamespace
Resolve a RedM/RDR3 SCRIPT native by hash or name — O(1), exact. Use whenever you see `Citizen.InvokeNative(0x...)`, `Citizen.invokeNative('0x...')`, `GetHashKey('NAME')`, or a SCR…
read_lines read-only endpath*start*
Read an exact line range from a raw doc file by absolute line number — the windowed-read companion to `grep_docs`. When `grep_docs` returns a hit at `path:line` inside a large file…
semantic_search read-only modelimitquery*categorynamespaceprior_attempt +1
Search RedM/RDR3 docs by behavior, concept, OR exact token. Use when you don't have a specific native hash/name (use `lookup_native`) and the term isn't a known asset name in a lar…
share_finding body*tagstitle*sourcecategory
Share a verified finding back to the docs corpus so the next agent can find it. Use AFTER solving a non-trivial problem to record what would have saved you time: a gotcha, a workin…