rbxdev-ls
by 0neShot101·★ 16·综合分 42
面向Roblox的MCP服务器,提供与游戏实例交互和代码执行的工具。
概述
rbxdev-ls 是一个面向Roblox开发的综合Luau语言服务器和VS Code扩展,具备MCP服务器功能。它提供严格类型检查、代码补全,并通过执行器桥接提供独特的实时游戏工具。MCP服务器暴露16种工具,使AI助手能够浏览游戏层次结构、读写属性、执行代码并与运行中的Roblox游戏交互。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
如果您正在开发 Roblox 游戏并希望 AI 助手能够实时检查、分析和操作游戏状态,请选择此 MCP 服务器。
什么时候不要选它
如果您不使用 Roblox 游戏开发,或者需要支持多个游戏引擎的更通用的游戏开发 MCP 服务器,请不要选择它。
此 server 暴露的工具
从 README 抽取出 12 个工具execute_codeExecute Luau code in the Roblox game
browse_game_treeBrowse the Roblox game instance hierarchy
read_propertyRead a property of a game instance
write_propertyWrite a property of a game instance
create_instanceCreate a new instance in the game
clone_instanceClone an existing game instance
delete_instanceDelete an instance from the game
reparent_instanceMove an instance to a different parent in the hierarchy
teleport_toTeleport to a specific game instance
read_console_outputRead the game's console output
get_instance_descendantsGet all descendants of a specific instance
get_instance_childrenGet direct children of a specific instance
可对比工具
安装
VS Code扩展
从VS Code市场或Open VSX安装:
| 市场 | 链接 | | --- | --- | | VS Code市场 | [rbxdev.rbxdev-ls](https://marketplace.visualstudio.com/items?itemName=rbxdev.rbxdev-ls) | | Open VSX | [rbxdev/rbxdev-ls](https://open-vsx.org/extension/rbxdev/rbxdev-ls) |
MCP服务器(独立版)
使用npm安装:
npm install -g @0neshot101/rbxdev-mcp或使用npx:
npx @0neshot101/rbxdev-mcp对于Claude Desktop,添加到claude_desktop_config.json:
{
"mcpServers": {
"rbxdev": {
"command": "npx",
"args": ["@0neshot101/rbxdev-mcp"]
}
}
}FAQ
- 执行器桥接器是什么?
- 执行器桥接器是一个在Roblox游戏内运行的Luau脚本,它创建回到语言服务器的WebSocket连接,启用实时游戏功能,如浏览实例层次结构和执行代码。
- 我可以在Claude以外的AI助手上使用这个吗?
- 是的,MCP服务器适用于任何支持模型上下文协议的MCP兼容AI助手,包括Cursor、Windsurf等工具。
rbxdev-ls 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。