Roblox Studio MCP 서버
Claude 및 Gemini와 같은 AI 어시스턴트를 Roblox Studio에 연결하세요
이것은 무엇인가요?
AI가 게임 구조를 탐색하고, 스크립트를 읽고/편집하며, 대량 변경 작업을 로컬에서 안전하게 수행할 수 있도록 하는 MCP 서버입니다.
Related MCP server: Hex API MCP Server
설정
Studio 플러그인을 플러그인 폴더에 설치하세요.
Experience Settings > Security에서 Allow HTTP Requests를 활성화하세요.
AI를 연결하세요:
Claude Code:
claude mcp add robloxstudio -- npx -y robloxstudio-mcp@latestCodex CLI:
codex mcp add robloxstudio -- npx -y robloxstudio-mcp@latestGemini CLI:
gemini mcp add robloxstudio npx --trust -- -y robloxstudio-mcp@latest준비가 완료되면 플러그인에 "Connected"가 표시됩니다.
{
"mcpServers": {
"robloxstudio-mcp": {
"command": "npx",
"args": ["-y", "robloxstudio-mcp@latest"]
}
}
}Windows 사용자: 문제가 발생하면 cmd를 사용하세요:
{
"mcpServers": {
"robloxstudio-mcp": {
"command": "cmd",
"args": ["/c", "npx", "-y", "robloxstudio-mcp@latest"]
}
}
}무엇을 할 수 있나요?
"이 게임의 구조는 어떻게 되어 있어?", "사용되지 않는(deprecated) API가 포함된 스크립트를 찾아줘", "격자 형태로 50개의 테스트 NPC를 생성해줘", *"이 이동 코드를 최적화해줘"*와 같은 질문을 해보세요.
robloxstudio-mcp-inspector
검사 도구만 노출하는 더 가벼운 읽기 전용 버전입니다. 쓰기, 스크립트 편집, 객체 생성/삭제 기능이 없습니다. 실수로 변경할 위험 없이 게임 구조를 안전하게 탐색하고, 스크립트를 검토하며, 디버깅하는 데 이상적입니다.
31개의 읽기 전용 도구: get_file_tree, search_files, get_place_info, get_services, search_objects, get_instance_properties, get_instance_children, search_by_property, get_class_info, get_project_structure, mass_get_property, get_script_source, grep_scripts, get_attributes, get_tags, get_tagged, get_selection, get_playtest_output, get_connected_instances, get_descendants, compare_instances, get_output_log, export_build, list_library, search_materials, get_build, search_assets, get_asset_details, get_asset_thumbnail, preview_asset, capture_screenshot
설정 - 동일한 플러그인을 사용하며, 패키지 이름만 바꾸면 됩니다:
Claude:
claude mcp add robloxstudio-inspector -- npx -y robloxstudio-mcp-inspector@latestCodex:
codex mcp add robloxstudio-inspector -- npx -y robloxstudio-mcp-inspector@latestGemini:
gemini mcp add robloxstudio-inspector npx --trust -- -y robloxstudio-mcp-inspector@latest{
"mcpServers": {
"robloxstudio-mcp-inspector": {
"command": "npx",
"args": ["-y", "robloxstudio-mcp-inspector@latest"]
}
}
}Windows 사용자: 문제가 발생하면 cmd를 사용하세요:
{
"mcpServers": {
"robloxstudio-mcp-inspector": {
"command": "cmd",
"args": ["/c", "npx", "-y", "robloxstudio-mcp-inspector@latest"]
}
}
}Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/boshyxd/robloxstudio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
