FiveM Documentation MCP Server
Provides 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.
README
FiveM Documentation MCP Server
A FastMCP server providing documentation lookup for FiveM development with QBCore and ox framework.
Features
- lookup_native - Search GTA V native functions
- lookup_qb_event - Search QBCore events and functions
- lookup_ox_export - Search ox_lib exports
- search_docs - Full-text search across all documentation
- get_fxmanifest - Generate resource templates
Installation
Local Development
# Install dependencies
pip install -r requirements.txt
# Run locally (stdio transport)
python server.py
# Run with SSE transport (for web)
python -c "from server import mcp; mcp.run(transport='sse')"
Deploy to FastMCP Cloud
- Install FastMCP CLI:
pip install fastmcp
- Deploy:
fastmcp deploy server.py --name fivem-docs
Docker Deployment
# Build
docker build -t mcp-fivem-docs .
# Run
docker run -p 8000:8000 mcp-fivem-docs
Connect to Claude Code
Option 1: FastMCP Cloud (Recommended)
After deploying to FastMCP Cloud, add to your .mcp.json:
{
"mcpServers": {
"fivem-docs": {
"url": "https://your-server.fastmcp.io/sse"
}
}
}
Option 2: Local SSE Server
Run the server locally with SSE transport, then:
{
"mcpServers": {
"fivem-docs": {
"url": "http://localhost:8000/sse"
}
}
}
Option 3: Local STDIO
{
"mcpServers": {
"fivem-docs": {
"command": "python",
"args": ["C:\\path\\to\\server.py"]
}
}
}
Usage Examples
Once connected, you can ask Claude:
- "Look up the GetPlayerPed native"
- "Find QBCore player loaded event"
- "Search ox_lib for notifications"
- "Generate fxmanifest for a new qbcore script"
- "How do I use callbacks in QBCore?"
Tools Reference
lookup_native
query: string (required) - Native name or keyword
category: string (optional) - PLAYER, VEHICLE, PED, ENTITY, etc.
lookup_qb_event
query: string (required) - Event name or keyword
side: string (optional) - 'client', 'server', or 'both'
lookup_ox_export
query: string (required) - Export name or keyword
module: string (optional) - 'interface', 'callback', 'cache', etc.
search_docs
query: string (required) - Search query
source: string (optional) - 'all', 'natives', 'qbcore', 'ox', 'fivem'
get_fxmanifest
name: string (required) - Resource name
framework: string (optional) - 'qbcore', 'ox', 'standalone'
has_ui: boolean (optional) - Include NUI files
use_ox_lib: boolean (optional) - Include ox_lib dependency
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.