@traumadev/ragemp-mcp
v1.0.1
Published
MCP server for RAGE:MP Wiki documentation
Downloads
18
Maintainers
Readme
mcp-ragemp-wiki
An MCP (Model Context Protocol) server that lets Claude AI read documentation directly from the RAGE:MP Wiki. Ask Claude about any RAGE:MP API and it will fetch the answer straight from the official wiki.
What it does
Claude can call the get_wiki_content tool to fetch any page from wiki.rage.mp and read its content — no copy-pasting docs needed.
Example prompts you can use with Claude:
- "How does Entity::position work in RAGE:MP?"
- "Show me the Vehicle class methods from the RAGE:MP wiki"
- "What events are available for players?"
Requirements
- Node.js v18 or higher
- Claude Desktop
Installation
1. Clone the repository
git clone https://github.com/TommyMFN/mcp-ragemp-wiki.git
cd mcp-ragemp-wiki2. Install dependencies
npm install3. Build the project
npm run buildThis will compile TypeScript into the dist/ folder.
4. Add to Claude Desktop config
Open your Claude Desktop configuration file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Add the following inside "mcpServers":
{
"mcpServers": {
"ragemp-wiki": {
"command": "node",
"args": ["/absolute/path/to/mcp-ragemp-wiki/dist/index.js"]
}
}
}Replace
/absolute/path/to/mcp-ragemp-wikiwith the actual path where you cloned the repo.Windows example:
"args": ["C:\\Users\\YourName\\mcp-ragemp-wiki\\dist\\index.js"]
5. Restart Claude Desktop
Fully quit and reopen Claude Desktop. You should see a hammer icon (🔨) in the chat input — that means the MCP server is connected.
Usage
Just ask Claude anything about RAGE:MP and mention the wiki:
What does mp.players.forEach do? Check the RAGE:MP wiki.Claude will automatically call get_wiki_content with the right wiki path and return the answer.
Available Tool
| Tool | Parameter | Description |
|------|-----------|-------------|
| get_wiki_content | path (string) | Fetches a page from wiki.rage.mp. Example: /wiki/Entity::position |
License
MIT — free to use, modify, and distribute.
