redm-mcp-public
by Cmoen11·★ 1·Score 37
MCP server providing RedM/RDR3 native lookups, semantic search and framework documentation.
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:
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 READMElookup_nativeExact lookup by hash or name for native functions
semantic_searchSearch by behavior or concept
grep_docsRegex/literal grep across raw doc files
list_namespacesList categories and namespaces
browseList document paths under a category/namespace
get_documentFetch full markdown for a doc path
Comparable tools
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/mcpClaude 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
Last updated · Auto-generated from public README + GitHub signals.