redm-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@redm-mcplook up native hash 0x09C28F828EE674FA"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
redm-mcp — RedM / RDR3 docs MCP server
Model Context Protocol (MCP) server for RedM / RDR3: native lookups (hash ↔ name), semantic search, framework docs (VORP, RSGCore, oxmysql), and the rdr3_discoveries community data (peds, weapons, animations, AI flags, props, audio banks). Gives AI coding agents (Claude Code, Cursor, Claude Desktop, VS Code Copilot, Zed, …) exact answers instead of guesses.
Runs as a hosted HTTP-transport MCP at https://redm-mcp.fivem.no/mcp — no local install, no auth, just point your client at it.
This repository contains only installation/usage docs and serves as the issue tracker. The server source code is proprietary and not distributed. The hosted endpoint is free to use.
Why
When an agent reads RedM code it typically encounters:
Citizen.InvokeNative(0x09C28F828EE674FA, player, 1.5, 5000)Without a lookup, the agent guesses at parameters and semantics. With this server:
lookup_native({ hash: "0x09C28F828EE674FA" })
→ BOOST_PLAYER_HORSE_SPEED_FOR_TIME(player Player, speedBoost float, duration int)The server advertises its own usage via MCP instructions — no skill or extra client config needed.
Related MCP server: SJ RedM MCP Server
Tools
Tool | Use |
| Exact lookup by hash or name. O(1). Use for |
| Search by behavior/concept ("teleport player", "spawn horse"). |
| Regex/literal grep across raw doc files. Required for the large |
| List categories and namespaces. |
| List document paths under a category/namespace. |
| Fetch full markdown for a doc path. |
Client setup
All clients connect to https://redm-mcp.fivem.no/mcp. No authentication required.
VS Code and Cursor users: click an install badge above for one-click setup. For everything else, copy-paste the config below — also available as ready-made files in examples/.
Claude Code
claude mcp add --transport http redm-mcp https://redm-mcp.fivem.no/mcpOr edit ~/.claude.json manually:
{
"mcpServers": {
"redm-mcp": {
"type": "http",
"url": "https://redm-mcp.fivem.no/mcp"
}
}
}Cursor
Edit ~/.cursor/mcp.json (or .cursor/mcp.json in a project root):
{
"mcpServers": {
"redm-mcp": {
"url": "https://redm-mcp.fivem.no/mcp"
}
}
}Restart Cursor. Check Settings → MCP for green status.
Claude Desktop
Claude Desktop doesn't support HTTP MCP directly — use mcp-remote as a proxy. Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"redm-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://redm-mcp.fivem.no/mcp"
]
}
}
}Restart Claude Desktop.
VS Code (Copilot / Continue)
.vscode/mcp.json in a project root:
{
"servers": {
"redm-mcp": {
"type": "http",
"url": "https://redm-mcp.fivem.no/mcp"
}
}
}Zed
~/.config/zed/settings.json:
{
"context_servers": {
"redm-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"mcp-remote",
"https://redm-mcp.fivem.no/mcp"
]
}
}
}
}Other clients (generic)
HTTP transport clients: point to
https://redm-mcp.fivem.no/mcpstdio-only clients: use
mcp-remoteas a proxy
Verify it works
curl https://redm-mcp.fivem.no/health→{"ok":true}curl https://redm-mcp.fivem.no/ingest-status→ shows version and last ingested timestampIn your client: ask the agent to look up
0x09C28F828EE674FA— should returnBOOST_PLAYER_HORSE_SPEED_FOR_TIME
Endpoints
Path | Auth | Purpose |
| no | MCP protocol |
| no | Liveness |
| no |
|
| no | Usage stats (tool counters, durations, breakdowns). Metadata only — no queries or secrets stored. |
| no | HTML dashboard over |
Example prompts
See examples/prompts.md for things to try once installed (native lookups, behavior searches, framework / inventory questions, debugging).
Issues / feedback
Bug, missing docs, incorrect native lookups, requests for new tools? Open an issue.
Doc sources
Indexed upstreams:
femga/rdr3_discoveries — community ped/weapon/anim/prop hashes, AI flags, enums
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
The documentation, as a tool your agent can call: 950+ AI-dev guides. Search + fetch tools.
Versioned documentation registry and semantic search for AI tools and coding assistants.
Agent-native search engine with live web research optimized for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceProvides documentation lookup and search capabilities for FiveM development, including GTA V native functions, QBCore events, and ox_lib exports. Enables developers to query documentation and generate resource templates through natural language.-
- FlicenseBqualityDmaintenanceA unified development tool for RedM that provides access to RDR3 discoveries, framework documentation (VORP/RSGCore), native functions across 86+ namespaces, and database operations with smart context-aware loading.136-
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to fetch, index, and perform semantic RAG-based searches on API documentation from various sources. It provides tools for hybrid search and collection management, allowing users to access up-to-date documentation from projects like Gemini and FastMCP.-
- AlicenseAqualityCmaintenanceEnables AI agents to search CustomNPCs JavaDoc for methods, fields, and class hierarchies across multiple Minecraft versions and forks.2MIT