SJ RedM MCP Server

by iamvillain

Not rated
GitHub

About

A versatile MCP server for RedM development, providing access to RDR3 discoveries, framework documentation, native functions, and database operations.

Details

Author
iamvillain
Categories
Developer Tools, Other, Database, Knowledge Base

Option A: Claude Code CLI Setup (Recommended)

claude mcp add sj-redm-mcp node "/absolute/path/to/sj-redm-mcp/index.js"

Set GitHub token (optional but recommended):

claude mcp add-json sj-redm-mcp '{ "command": "node", "args": ["/absolute/path/to/sj-redm-mcp/index.js"], "env": { "GITHUB_TOKEN": "your-github-token-here" } }'

Alternative: Project-level configuration

The repository includes a.mcp.jsonfile for project-level configuration. When working in this directory, Claude Code CLI will automatically detect and use the MCP server.

Add the following to your Claude Desktop configuration file:

Windows:%APPDATA%\Claude\claude_desktop_config.jsonmacOS:~/Library/Application Support/Claude/claude_desktop_config.json

{ "mcpServers": { "sj-redm-mcp": { "command": "node", "args": ["/absolute/path/to/sj-redm-mcp/index.js"], "env": { "GITHUB_TOKEN": "your-github-token-here" } } } }

Note:GitHub token is optional but recommended for higher API rate limits.

- redm-search-discoveries: Search the RDR3 discoveries repository
- redm-read-discovery-file: Read specific files from the repository
- redm-list-discovery-dirs: List directory contents
- redm-get-lua-examples: Find Lua code examples by topic

- redm-search-framework-docs: Search VORP and RSGCore documentation
- redm-get-vorp-docs: Get all VORP framework documentation
- redm-get-rsgcore-docs: Get all RSGCore framework documentation
- redm-get-oxmysql-docs: Get database operation documentation

- redm-search-natives: Search for native functions by name
- redm-get-native-details: Get detailed native function information
- redm-list-native-namespaces: List all available namespaces
- redm-browse-namespace: Browse natives within a specific namespace

- redm-get-smart-context: Get intelligent context based on your query

"How do I create a character in VORP?" → Automatically loads VORP docs + oxmysql docs
"Show me RSGCore server events for player management" → Loads RSGCore documentation with server events
"Find texture information for horse models" → Uses RDR3 discoveries for asset research
"Get animation examples for ped interactions" → Searches discoveries repo for animation scripts
"How do I use SET_PED_COMPONENT_VARIATION native?" → Returns detailed native info with parameters and Lua example
"Search for vehicle-related natives in VEHICLE namespace" → Lists relevant vehicle natives with usage details
"How do I insert player data into database?" → Includes oxmysql documentation automatically

The MCP server intelligently loads relevant documentation based on your queries:

- VORP mentions: Auto-loads complete VORP docs + oxmysql docs
- RSG/RSGCore mentions: Auto-loads complete RSGCore docs + oxmysql docs
- Asset research terms(texture, ped, animation, etc.): Prioritizes RDR3 discoveries
- Native/scripting terms: Activates native function database
- Database terms: Includes oxmysql documentation

sj-redm-mcp/ ├── docs/ │ ├── vorp/ # VORP framework documentation │ │ ├── vorp_core_docs.md │ │ ├── vorp_characters_docs.md │ │ ├── vorp_inventory_docs.md │ │ └── ... │ ├── rsgcore/ # RSGCore framework documentation │ │ ├── rsgcore_client_events.md │ │ ├── rsgcore_server_events.md │ │ └── ... │ ├── natives/ # RDR3 native functions (86+ namespaces) │ │ ├── ENTITY/ │ │ ├── PLAYER/ │ │ ├── VEHICLE/ │ │ └── ... │ └── oxmysql_documentation.md # Database operations ├── cache/ # Performance cache ├── package.json ├── index.js # Main MCP server └── README.md

- Direct Call Preference: Uses function names instead of hashes
- Hash Comments: Includes hash values as comments for reference
- Parameter Details: Complete parameter information and types
- Lua Examples: Working code examples for each native
- 86+ Namespaces: Complete coverage of all RDR3 systems

-- Set ped component variation Ped.SetPedComponentVariation(ped, componentId, drawableId, textureId, paletteId) -- 0x262B14F48D29DE80

- Ensure you rannpm installin the correct directory
- Check that Node.js version is 16.0.0 or higher

- Add a GitHub token to your configuration for higher limits
- Public repositories have lower rate limits without authentication

- Verify the absolute path in your configuration
- Ensure JSON syntax is valid in claude_desktop_config.json
- Restart Claude Desktop after configuration changes

- Runclaude mcp listto verify the server is configured
- Check that the absolute path in your configuration is correct
- If using project-level config, ensure you're in the correct directory
- Runclaude mcp remove sj-redm-mcpand re-add if needed

- Check that all documentation files are in the docs/ directory
- Verify file permissions allow reading

- The server uses intelligent caching for better performance
- Native function index is built on first use and cached
- Framework documentation is cached after first load
- Use specific namespace searches for faster native function lookups

This MCP server combines functionality from multiple sources:

- RDR3 Discoveries- Game research and documentation
- VORP Framework - RedM framework documentation
- RSGCore Framework - Alternative RedM framework
- RDR3 Natives Database - Comprehensive native function documentation

MIT License - Feel free to use and modify for your RedM development needs.
- Check the troubleshooting section above
- Verify your Claude Desktop configuration
- Ensure all dependencies are properly installed
- Test individual tools using the available commands

- Initial unified release
- Combined 3 separate MCPs into one
- Added smart context loading
- Implemented consistent tool naming with "redm-" prefix
- Single installation process
- Comprehensive documentation coverage

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

MCP servers for Deephaven to orchestrate data workers and power documentation Q&A with LLMs, enabling AI-driven data workflows.

Provides Godot documentation to a RAG model using a vector database.

Introspects Laravel codebases to provide structured information about views, routes, classes, and models using the mateffy/laravel-introspect package.

uild plug-and-play MCP servers for code search, docs, databases, and more. Integrates with Claude Code, Cursor, and Windsurf.

mcmodding-mcp is a Model Context Protocol (MCP) server that gives AI assistants like Claude direct access to Minecraft modding documentation. Instead of relying on potentially outdated training data, your AI assistant can search real documentation, find code examples, and explain concepts accurately.

Retrieves relevant code snippets and documents to assist in generating PyMilvus code, requiring a running Milvus instance.

Postgres skills and documentation to help AI coding tools generate better PostgreSQL code.

Build custom MCP tools on any datasource and ship them to any agent builder from one control plane—using only SQL and a secure link.

The Xata MCP server lets AI assistants and agents interact with your Xata organizations, projects, and Postgres database branches.

Hosted MCP server for live sports data — scores, analytics, schedules, standings, multi-book odds, team form, head-to-head, model predictions, and pre-generated matchup analysis across 1,000+ leagues in 150+ countries. Free tier, no card.

A unified "Swiss Army knife" MCP (Model Context Protocol) server for RedM development that combines RDR3 discoveries, framework documentation (VORP/RSGCore), native functions, and database operations into one powerful tool.

- Search the comprehensive RDR3 discoveries GitHub repository
- Access game assets, textures, ped models, controls, scenarios, and animations
- Get Lua code examples for specific topics
- Browse repository structure and read files directly

- VORP Framework: Complete documentation including core, characters, inventory, menu, metabolism, and more
- RSGCore Framework: Client/server events and functions documentation
- oxmysql: Database operations and query documentation
- Smart context loading - mention "vorp" or "rsg" to auto-load relevant docs

- 86+ namespaces covering all RDR3 game systems
- 221+ documentation files with comprehensive native details
- Search natives by name or functionality
- Get detailed parameter information and usage examples
- Prefer direct calls over hashes with hash comments for Lua scripting

- Automatically detects framework mentions and loads relevant documentation
- Context-aware suggestions based on your queries
- Intelligent module activation for optimal performance

- Node.js 16.0.0 or higher
- Claude Desktop application OR Claude Code CLI

Option A: Claude Code CLI Setup (Recommended)

claude mcp add sj-redm-mcp node "/absolute/path/to/sj-redm-mcp/index.js"

Set GitHub token (optional but recommended):

claude mcp add-json sj-redm-mcp '{ "command": "node", "args": ["/absolute/path/to/sj-redm-mcp/index.js"], "env": { "GITHUB_TOKEN": "your-github-token-here" } }'

Alternative: Project-level configuration

The repository includes a.mcp.jsonfile for project-level configuration. When working in this directory, Claude Code CLI will automatically detect and use the MCP server.

Add the following to your Claude Desktop configuration file:

Windows:%APPDATA%\Claude\claude_desktop_config.jsonmacOS:~/Library/Application Support/Claude/claude_desktop_config.json

{ "mcpServers": { "sj-redm-mcp": { "command": "node", "args": ["/absolute/path/to/sj-redm-mcp/index.js"], "env": { "GITHUB_TOKEN": "your-github-token-here" } } } }

Note:GitHub token is optional but recommended for higher API rate limits.

- redm-search-discoveries: Search the RDR3 discoveries repository
- redm-read-discovery-file: Read specific files from the repository
- redm-list-discovery-dirs: List directory contents
- redm-get-lua-examples: Find Lua code examples by topic

- redm-search-framework-docs: Search VORP and RSGCore documentation
- redm-get-vorp-docs: Get all VORP framework documentation
- redm-get-rsgcore-docs: Get all RSGCore framework documentation
- redm-get-oxmysql-docs: Get database operation documentation

- redm-search-natives: Search for native functions by name
- redm-get-native-details: Get detailed native function information
- redm-list-native-namespaces: List all available namespaces
- redm-browse-namespace: Browse natives within a specific namespace

- redm-get-smart-context: Get intelligent context based on your query

"How do I create a character in VORP?" → Automatically loads VORP docs + oxmysql docs
"Show me RSGCore server events for player management" → Loads RSGCore documentation with server events
"Find texture information for horse models" → Uses RDR3 discoveries for asset research
"Get animation examples for ped interactions" → Searches discoveries repo for animation scripts
"How do I use SET_PED_COMPONENT_VARIATION native?" → Returns detailed native info with parameters and Lua example
"Search for vehicle-related natives in VEHICLE namespace" → Lists relevant vehicle natives with usage details
"How do I insert player data into database?" → Includes oxmysql documentation automatically

The MCP server intelligently loads relevant documentation based on your queries:

- VORP mentions: Auto-loads complete VORP docs + oxmysql docs
- RSG/RSGCore mentions: Auto-loads complete RSGCore docs + oxmysql docs
- Asset research terms(texture, ped, animation, etc.): Prioritizes RDR3 discoveries
- Native/scripting terms: Activates native function database
- Database terms: Includes oxmysql documentation

sj-redm-mcp/ ├── docs/ │ ├── vorp/ # VORP framework documentation │ │ ├── vorp_core_docs.md │ │ ├── vorp_characters_docs.md │ │ ├── vorp_inventory_docs.md │ │ └── ... │ ├── rsgcore/ # RSGCore framework documentation │ │ ├── rsgcore_client_events.md │ │ ├── rsgcore_server_events.md │ │ └── ... │ ├── natives/ # RDR3 native functions (86+ namespaces) │ │ ├── ENTITY/ │ │ ├── PLAYER/ │ │ ├── VEHICLE/ │ │ └── ... │ └── oxmysql_documentation.md # Database operations ├── cache/ # Performance cache ├── package.json ├── index.js # Main MCP server └── README.md

- Direct Call Preference: Uses function names instead of hashes
- Hash Comments: Includes hash values as comments for reference
- Parameter Details: Complete parameter information and types
- Lua Examples: Working code examples for each native
- 86+ Namespaces: Complete coverage of all RDR3 systems

-- Set ped component variation Ped.SetPedComponentVariation(ped, componentId, drawableId, textureId, paletteId) -- 0x262B14F48D29DE80

- Ensure you rannpm installin the correct directory
- Check that Node.js version is 16.0.0 or higher

- Add a GitHub token to your configuration for higher limits
- Public repositories have lower rate limits without authentication

- Verify the absolute path in your configuration
- Ensure JSON syntax is valid in claude_desktop_config.json
- Restart Claude Desktop after configuration changes

- Runclaude mcp listto verify the server is configured
- Check that the absolute path in your configuration is correct
- If using project-level config, ensure you're in the correct directory
- Runclaude mcp remove sj-redm-mcpand re-add if needed

- Check that all documentation files are in the docs/ directory
- Verify file permissions allow reading

- The server uses intelligent caching for better performance
- Native function index is built on first use and cached
- Framework documentation is cached after first load
- Use specific namespace searches for faster native function lookups

This MCP server combines functionality from multiple sources:

- RDR3 Discoveries- Game research and documentation
- VORP Framework - RedM framework documentation
- RSGCore Framework - Alternative RedM framework
- RDR3 Natives Database - Comprehensive native function documentation

MIT License - Feel free to use and modify for your RedM development needs.
- Check the troubleshooting section above
- Verify your Claude Desktop configuration
- Ensure all dependencies are properly installed
- Test individual tools using the available commands

- Initial unified release
- Combined 3 separate MCPs into one
- Added smart context loading
- Implemented consistent tool naming with "redm-" prefix
- Single installation process
- Comprehensive documentation coverage

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

MCP servers for Deephaven to orchestrate data workers and power documentation Q&A with LLMs, enabling AI-driven data workflows.

Provides Godot documentation to a RAG model using a vector database.

Introspects Laravel codebases to provide structured information about views, routes, classes, and models using the mateffy/laravel-introspect package.

uild plug-and-play MCP servers for code search, docs, databases, and more. Integrates with Claude Code, Cursor, and Windsurf.

mcmodding-mcp is a Model Context Protocol (MCP) server that gives AI assistants like Claude direct access to Minecraft modding documentation. Instead of relying on potentially outdated training data, your AI assistant can search real documentation, find code examples, and explain concepts accurately.

Retrieves relevant code snippets and documents to assist in generating PyMilvus code, requiring a running Milvus instance.

Postgres skills and documentation to help AI coding tools generate better PostgreSQL code.

Build custom MCP tools on any datasource and ship them to any agent builder from one control plane—using only SQL and a secure link.

The Xata MCP server lets AI assistants and agents interact with your Xata organizations, projects, and Postgres database branches.

Hosted MCP server for live sports data — scores, analytics, schedules, standings, multi-book odds, team form, head-to-head, model predictions, and pre-generated matchup analysis across 1,000+ leagues in 150+ countries. Free tier, no card.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.