MCP Server for Roblox Studio Documentation - Complete API reference, FastFlags, Open Cloud API, Luau language docs, DataTypes, Libraries, DevForum search, and more
Project description
MCP Roblox Docs
A comprehensive MCP (Model Context Protocol) server providing complete Roblox ecosystem documentation. Query API references, FastFlags, Open Cloud REST API, Luau language docs, and DevForum - all from your AI assistant.
Features
- Always Up-to-Date: Automatically syncs from Roblox's official sources
- 26 Specialized Tools: Complete coverage of the Roblox ecosystem
- Full-Text Search: Search across 850+ classes, 35,000+ members, 14,000+ FastFlags, 865 Cloud API endpoints
- DataTypes & Libraries: 44 DataTypes (Vector3, CFrame, etc.) and 11 Luau standard libraries
- Multi-Language: Supports 15 languages including English, Indonesian, Japanese, Korean, Chinese
- DevForum Integration: Search community discussions with intelligent caching
- Open Cloud API: Full REST API documentation with auth, parameters, and response schemas
- FastFlags Reference: Search and explore 14,000+ engine flags
- Luau Language Docs: Complete language reference and globals
- Zero Cost: 100% free, no API keys required
- Optimized: Lazy loading, in-memory caching, DevForum result caching
- Fast Sync: Parallel downloads (7-10x faster), retry logic, HTTP compression
Installation
Quick Start (Recommended)
The easiest way to use this MCP server is via uvx:
uvx mcp-roblox-docs
No installation, no setup - it just works!
From Source
git clone https://github.com/nhattamgithub/mcp-roblox-docs
cd mcp-roblox-docs
uv sync
uv run mcp-roblox-docs
Configuration
Claude Desktop
Add to your Claude Desktop config:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"roblox-docs": {
"command": "uvx",
"args": ["mcp-roblox-docs"]
}
}
}
Cursor / Other MCP Clients
{
"mcpServers": {
"roblox-docs": {
"command": "uvx",
"args": ["mcp-roblox-docs"]
}
}
}
Or if running from source:
{
"command": "uv",
"args": ["--directory", "/path/to/mcp-roblox-docs", "run", "mcp-roblox-docs"]
}
Available Tools (26 Total)
Core API Tools
| Tool | Description |
|---|---|
roblox_search |
Full-text search across all Roblox API |
roblox_get_class |
Get complete class info with members, metadata, category |
roblox_get_member |
Get detailed member info (property/method/event) |
roblox_get_enum |
Get enum with all values |
roblox_check_deprecated |
Check deprecation status + get alternatives |
roblox_list_services |
List all 290+ Roblox services |
Extended API Tools
| Tool | Description |
|---|---|
roblox_get_inheritance |
Get class hierarchy and subclasses |
roblox_search_devforum |
Search DevForum threads (cached) |
roblox_recent_changes |
Get API version info |
roblox_list_enums |
List all 500+ available enums |
roblox_sync |
Force sync data or change language |
FastFlags Tools
| Tool | Description |
|---|---|
roblox_search_fflags |
Search 14,000+ FastFlags by name |
roblox_get_fflag |
Get specific FastFlag details and type |
roblox_list_fflag_prefixes |
Explain FastFlag prefix types (FFlag, FInt, DFFlag, etc.) |
Luau Globals Tools
| Tool | Description |
|---|---|
roblox_get_luau_globals |
List all Luau global functions and types |
roblox_get_luau_global |
Get specific global details (print, typeof, etc.) |
Open Cloud API Tools
| Tool | Description |
|---|---|
roblox_search_cloud_api |
Search 865 REST API endpoints |
roblox_get_cloud_endpoint |
Get endpoint details (auth, params, responses) |
roblox_list_cloud_apis |
List all Open Cloud API categories |
Luau Language Tools
| Tool | Description |
|---|---|
roblox_get_luau_topic |
Get Luau language documentation |
roblox_list_luau_topics |
List available Luau doc topics |
DataType Tools
| Tool | Description |
|---|---|
roblox_get_datatype |
Get datatype documentation (Vector3, CFrame, Color3, UDim2, etc.) |
roblox_list_datatypes |
List all 44 available Roblox datatypes |
Library Tools
| Tool | Description |
|---|---|
roblox_get_library |
Get Luau library documentation (math, string, table, etc.) |
roblox_get_library_function |
Get specific function details (math.clamp, string.split, etc.) |
roblox_list_libraries |
List all 11 Luau standard libraries |
Examples
Search for APIs
User: How do I animate something smoothly?
AI: [uses roblox_search("tween animation")]
→ TweenService, TweenBase, Tween, EasingStyle...
Get Class Info
User: Tell me about TweenService
AI: [uses roblox_get_class("TweenService")]
→ Complete class info with Create(), GetValue(), SmoothDamp() methods
Category: Animation, Preferred Parent: game
Check Deprecation
User: Is BodyPosition deprecated?
AI: [uses roblox_check_deprecated("BodyPosition")]
→ Yes, deprecated. Use AlignPosition (constraint-based) instead.
Search FastFlags
User: What flags control physics?
AI: [uses roblox_search_fflags("physics")]
→ FIntPhysicsMaxSteps, DFFlagPhysicsDebug, FFlagPhysicsOptimized...
Get Cloud API Endpoint
User: How do I publish a message to a topic?
AI: [uses roblox_search_cloud_api("publish message")]
→ POST /v1/universes/{universeId}/topics/{topic}
Auth: API Key with messaging-service:publish scope
Get Luau Globals
User: What built-in functions does Luau have?
AI: [uses roblox_get_luau_globals()]
→ print, warn, error, typeof, select, pairs, ipairs, next...
Luau Language Docs
User: How do type annotations work in Luau?
AI: [uses roblox_get_luau_topic("type-annotations")]
→ Complete guide on type syntax, generics, type inference...
Search DevForum
User: How do people optimize memory in Roblox?
AI: [uses roblox_search_devforum("memory optimization")]
→ Links to relevant community discussions (cached for 1 hour)
Get DataType Info
User: How do I create a Vector3?
AI: [uses roblox_get_datatype("Vector3")]
→ Vector3.new(x, y, z), Vector3.one, Vector3.zero
Properties: X, Y, Z, Magnitude, Unit
Methods: Cross, Dot, Lerp, Angle...
Get Library Function
User: How does math.clamp work?
AI: [uses roblox_get_library_function("math", "clamp")]
→ math.clamp(x, min, max): number
Returns x clamped between min and max
Data Sources
All data is fetched from free, public sources:
| Source | Content |
|---|---|
| Roblox-Client-Tracker | Classes, members, enums, FastFlags, Luau types, metadata |
| Roblox Creator Docs | Open Cloud API, Luau language documentation |
| DevForum | Community discussions |
Data Stats
| Data Type | Count |
|---|---|
| Classes | 850+ |
| Members | 35,000+ |
| Enums | 500+ |
| FastFlags | 14,000+ |
| Luau Globals | 87 |
| Cloud Endpoints | 865 |
| Luau Doc Topics | 20 |
| DataTypes | 44 |
| Libraries | 11 |
Supported Languages
Switch documentation language with roblox_sync(language="id-id"):
en-us- English (default)id-id- Indonesianja-jp- Japaneseko-kr- Koreanzh-cn- Chinese (Simplified)zh-tw- Chinese (Traditional)de-de- Germanes-es- Spanishfr-fr- Frenchit-it- Italianpt-br- Portuguese (Brazil)ru-ru- Russianth-th- Thaitr-tr- Turkishvi-vn- Vietnamese
Cache Location
Data is cached in your system's standard cache directory:
- Windows:
%LOCALAPPDATA%\mcp-roblox-docs\ - macOS:
~/Library/Caches/mcp-roblox-docs/ - Linux:
~/.cache/mcp-roblox-docs/
Cache is automatically updated when Roblox releases new API versions.
Development
# Clone the repository
git clone https://github.com/nhattamgithub/mcp-roblox-docs
cd mcp-roblox-docs
# Install dependencies
uv sync
# Run the server locally
uv run mcp-roblox-docs
# Test tool count
uv run python -c "from src.server import mcp; print('Tools:', len(mcp._tool_manager._tools))"
# Build for distribution
uv build
# Publish to PyPI
uv publish
Changelog
v3.0.1 (2026-01-25)
- Fixed changelog year (2025 -> 2026)
v3.0.0 (2026-01-25)
Performance & Reliability Release
- Parallel downloads with semaphore (7-10x faster sync)
- Retry logic with exponential backoff (3 attempts)
- HTTP compression support (gzip, deflate)
- Pre-compiled regex patterns (faster parsing)
- DataTypes/Libraries now searchable via
roblox_search - DevForum rate limiting (prevents 429 errors)
- Input validation module for security
v2.1.0 (2026-01-25)
- Added DataTypes documentation (44 types: Vector3, CFrame, Color3, UDim2, TweenInfo, etc.)
- Added Luau Libraries documentation (11 libraries: math, string, table, task, etc.)
- Added 5 new tools:
roblox_get_datatype,roblox_list_datatypes,roblox_get_library,roblox_get_library_function,roblox_list_libraries - Expanded from 21 to 26 tools
v2.0.0 (2026-01-25)
- Added FastFlags support (14,000+ flags from FVariables.txt)
- Added Luau globals (87 built-in functions/types)
- Added Open Cloud REST API (865 endpoints from openapi.json)
- Added Luau language documentation (20 topics)
- Added class metadata (categories, icons, preferred parents)
- Added DevForum caching (1 hour TTL)
- Enhanced deprecation alternatives (40+ class, 30+ member mappings)
- Expanded from 11 to 21 tools
v1.0.1
- Initial stable release
- Core API documentation tools
- DevForum search integration
- Multi-language support
License
MIT License - see LICENSE for details.
Credits
- Roblox-Client-Tracker by MaximumADHD
- Roblox Creator Docs by Roblox
- MCP Protocol by Anthropic
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_roblox_docs-3.0.1.tar.gz.
File metadata
- Download URL: mcp_roblox_docs-3.0.1.tar.gz
- Upload date:
- Size: 89.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8371f23882cc3d0de94ef4a41f0ed7df4af7bc57bbcc725bd6cfffc9af4d3150
|
|
| MD5 |
1872fef6a3a9ee2c0605466b2ba50974
|
|
| BLAKE2b-256 |
17df1eacc44a74972137067afce612490d49d2ef57e313630de41cc2fdbd0668
|
File details
Details for the file mcp_roblox_docs-3.0.1-py3-none-any.whl.
File metadata
- Download URL: mcp_roblox_docs-3.0.1-py3-none-any.whl
- Upload date:
- Size: 39.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dd73bbf7f5878a505ba87ff3c9d96b5575d8696197c16eaa4f49d7c22dcc8dc
|
|
| MD5 |
1555b89952d13f925b520f0fcc4e7a50
|
|
| BLAKE2b-256 |
45070c2c73141d9e10aecfb49e4dfacf638bba949bd2259790e78051f5d68da0
|