MCP Setup
Configure your MCP client to use the RbxSync MCP server.
Prerequisites
Build RbxSync with MCP support:
bashcargo build --releaseLocate the MCP binary:
target/release/rbxsync-mcp
MCP Client Configuration
Add the RbxSync MCP server to your client's configuration:
json
{
"mcpServers": {
"rbxsync": {
"command": "/path/to/rbxsync-mcp"
}
}
}Replace /path/to/rbxsync-mcp with your actual path:
json
{
"mcpServers": {
"rbxsync": {
"command": "/Users/you/rbxsync/target/release/rbxsync-mcp"
}
}
}Verify Setup
- Restart your MCP client
- Start a new conversation
- Ask: "What RbxSync tools do you have available?"
The AI should list the available MCP tools.
Connecting to Studio
Before AI can use RbxSync tools:
- Start the sync server:
rbxsync serve - Open Studio with the RbxSync plugin
- Connect the plugin to the server
Now your AI agent can control your Roblox development!
Troubleshooting
"MCP server not found"
- Check the path in config is correct
- Ensure the binary exists and is executable
- Try running the binary directly to test
"Connection refused"
- Start the RbxSync server:
rbxsync serve - Connect the Studio plugin
- Check that port 44755 is not blocked
Tools not appearing
- Restart your MCP client after config changes
- Check config JSON syntax is valid
