Roblox Studio MCPサーバー
ClaudeやGeminiなどのAIアシスタントをRoblox Studioに接続する
これは何ですか?
AIがゲーム構造を探索し、スクリプトの読み取り/編集を行い、一括変更をローカルかつ安全に実行できるようにするMCPサーバーです。
Related MCP server: Hex API MCP Server
セットアップ
Studioプラグインをプラグインフォルダにインストールします
エクスペリエンス設定 > セキュリティでHTTPリクエストを許可を有効にします
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"]
}
}
}何ができるのか?
「このゲームの構造はどうなっていますか?」、「非推奨のAPIを使用しているスクリプトを見つけて」、「テスト用のNPCを50体グリッド状に作成して」、*「この移動コードを最適化して」*といった質問が可能です。
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
