WEPPY

Claude Code Setup

How to use Roblox MCP with Claude Code.

How to use Roblox MCP with Claude Code (terminal-based AI coding tool).

Prerequisites

  • Claude Code installed
  • Roblox Studio plugin installation complete

Installation

npm install -g @anthropic-ai/claude-code

Registering the MCP Server

Run from your terminal. The WEPPY Roblox AI Toolkit adds the MCP server config plus WEPPY skills for Studio actions, UI Studio and playtest workflows, and Studio-local sync.

# Add marketplace
claude plugin marketplace add hope1026/weppy-roblox-mcp --scope user

# Install plugin
claude plugin install weppy-roblox-ai-toolkit@hope1026-roblox-mcp --scope user

Verify installation:

claude plugin list

Method 2: Edit Config File Directly

Use this if you only want the MCP server config without the WEPPY Roblox AI Toolkit. Create a .mcp.json file:

{
  "mcpServers": {
    "weppy-roblox-mcp": {
      "command": "npx",
      "args": ["-y", "@weppy/roblox-mcp@latest"]
    }
  }
}

Config file location:

ScopePath
Project<project>/.mcp.json
Global~/.claude/mcp.json

Automatic Server Management

Claude Code manages the MCP server automatically:

  • Starts automatically when needed
  • Stops automatically when the session ends
  • No additional configuration required

Connection Test

  1. Launch Roblox Studio → Plugins tab → WEPPYConnect
  2. Test from Claude Code:
    Create a blue Part in Roblox Studio

Troubleshooting

Plugin Installation Fails

claude plugin marketplace add hope1026/weppy-roblox-mcp --scope user
claude plugin install weppy-roblox-ai-toolkit@hope1026-roblox-mcp --scope user

Server Won’t Start

  1. Check the Node.js version (18.0 or higher required):

    node --version
  2. Test starting the server manually:

    npx -y @weppy/roblox-mcp@latest

MCP Tools Not Visible

Check in Claude Code:

Show me the list of available MCP tools