weppy-railway
Enables AI agents to interact with Roblox games and services through the WEPPY bridge, supporting remote command execution and game management.
Provides tools for Roblox Studio plugin integration, allowing AI agents to communicate with the Studio plugin via HTTP bridge for command polling and control.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@weppy-railwaylist the parts in the current Roblox place"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
WEPPY Roblox MCP — Railway Host
Deploy @weppy/roblox-mcp ke Railway supaya AI agent (Hermes/Claude/Cursor) bisa connect via SSE, dan Studio plugin bisa hit HTTP bridge lewat reverse proxy 1 port.
Arsitektur
┌─────────────────────────────────────────┐
│ Railway ($PORT) │
Internet ─────────►│ reverse proxy (start.mjs) │
│ │
│ /sse /message /healthz ──► supergateway│
│ │ │
│ └─stdio─► @weppy/roblox-mcp │
│ │ │
│ /* (dashboard, │ │
│ /status, plugin) ──┘ HTTP :3002 │
└─────────────────────────────────────────┘Endpoint | Fungsi |
| Health + daftar endpoint |
| MCP transport (AI client) |
| Status WEPPY bridge |
| WEPPY web dashboard |
| Plugin HTTP API (poll commands, dll) |
Related MCP server: Roblox Studio MCP Server
Batasan KRITIS (baca dulu)
WEPPY dirancang localhost:
MCP transport default = stdio (AI app spawn process lokal).
HTTP bridge default =
127.0.0.1:3002(Studio plugin di mesin yang sama).Official README: "The server runs on localhost only (127.0.0.1:3002)."
Jadi Railway saja TIDAK cukup biar AI remote + Studio remote jalan 100% out-of-the-box.
Setup yang realistis
Skenario | Cara |
A. Recommended | WEPPY jalan di Windows VPS / PC yang ada Roblox Studio. AI (Hermes di Linux) connect lewat tunnel SSE. |
B. Full Railway | Deploy ini ke Railway. Studio di Windows connect plugin ke URL Railway (custom host / hosts-file hack / reverse tunnel). |
C. Hybrid | Studio + WEPPY lokal di Windows. Expose cuma MCP SSE ke internet via cloudflared/ngrok. |
Deploy ke Railway
1. Login CLI
railway login
# atau non-interactive:
railway login --browserless
# paste token dari https://railway.app/account/tokens2. Init + deploy dari folder ini
cd /home/rafacorps/weppy-railway
railway init # create project "weppy-mcp"
railway up # build + deploy
railway domain # generate public URL3. Env vars (Railway dashboard atau CLI)
railway variables set MCP_AUTH_TOKEN="$(openssl rand -hex 24)"
railway variables set LOG_LEVEL=info
railway variables set DASHBOARD_AUTO_OPEN=false
railway variables set SKIP_PLUGIN_INSTALL=true
railway variables set WEPPY_MCP_DETACHED_LIFECYCLE=true
# setelah domain ada:
railway variables set PUBLIC_BASE_URL="https://YOUR-APP.up.railway.app"4. Cek health
curl -s https://YOUR-APP.up.railway.app/railway-health | jq
curl -s https://YOUR-APP.up.railway.app/status
curl -s https://YOUR-APP.up.railway.app/healthzConnect AI client (Hermes / Claude / Cursor)
SSE (supergateway style)
{
"mcpServers": {
"weppy-roblox": {
"url": "https://YOUR-APP.up.railway.app/sse",
"headers": {
"Authorization": "Bearer YOUR_MCP_AUTH_TOKEN"
}
}
}
}Via lokal stdio wrapper (kalau client cuma support stdio)
npx -y supergateway \
--sse "https://YOUR-APP.up.railway.app/sse" \
--oauth2Bearer "YOUR_MCP_AUTH_TOKEN"Config MCP:
{
"mcpServers": {
"weppy-roblox": {
"command": "npx",
"args": [
"-y", "supergateway",
"--sse", "https://YOUR-APP.up.railway.app/sse",
"--oauth2Bearer", "YOUR_MCP_AUTH_TOKEN"
]
}
}
}Connect Roblox Studio plugin
Plugin default hit http://127.0.0.1:3002. Opsi:
Opsi 1 — reverse tunnel di mesin Studio (paling clean)
Di Windows (Studio machine):
# cloudflared tunnel ke Railway bridge path, ATAU
# jalankan WEPPY lokal (recommended):
npx -y @weppy/roblox-mcp@latestKalau WEPPY lokal, AI remote connect via:
# di Windows expose port 3002 + stdio via cloudflared
cloudflared tunnel --url http://127.0.0.1:8787Opsi 2 — plugin ke public Railway URL
Kalau plugin punya field Server Host / Custom URL di settings:
https://YOUR-APP.up.railway.appKalau tidak ada custom host (banyak build hardcode localhost):
# Windows hosts + local reverse proxy (Caddy/nginx) ke Railway
# atau SSH reverse tunnel:
ssh -R 3002:YOUR-APP.up.railway.app:443 user@studio-machineLebih gampang: jalanin WEPPY di mesin Studio, Railway cuma buat AI SSE gateway yang proxy ke situ (client-mode) — butuh arsitektur 2-node.
Opsi 3 — WEPPY di Windows VPS (paling stabil buat Valgorant)
[Roblox Studio + Plugin] ←localhost:3002→ [WEPPY di Windows VPS]
↑ stdio
[supergateway :8787]
↑
[cloudflared / ngrok]
↑
[Hermes di Linux VPS]Script Windows (PowerShell):
# install
npm i -g @weppy/roblox-mcp supergateway
# terminal 1 — expose MCP as SSE
npx supergateway `
--stdio "npx -y @weppy/roblox-mcp@latest" `
--port 8787 `
--baseUrl http://127.0.0.1:8787 `
--ssePath /sse --messagePath /message --cors
# terminal 2 — public tunnel
cloudflared tunnel --url http://127.0.0.1:8787Lalu di Hermes pakai URL cloudflared /sse.
File di repo ini
File | Fungsi |
| Reverse proxy + spawn supergateway+WEPPY |
| Image Node 20 |
| Config Railway |
| deps: weppy + supergateway + http-proxy |
| Contoh env |
Local test (sebelum deploy)
cd /home/rafacorps/weppy-railway
npm install
PORT=8080 MCP_AUTH_TOKEN=test node start.mjs
# other terminal:
curl -s http://127.0.0.1:8080/railway-health
curl -s http://127.0.0.1:8080/status
curl -s http://127.0.0.1:8080/healthzTroubleshooting
Gejala | Fix |
Container crash loop | Cek logs: |
| Supergateway belum ready — tunggu 30–60s cold start |
Plugin "Disconnected" | Plugin masih ke localhost. Pakai opsi Studio di atas |
Dashboard blank | Buka |
401 on /sse | Kirim |
License / Pro tools fail | Normal di Basic; Pro key diaktifkan lewat plugin UI |
Ringkas rekomendasi buat lu (Valgorant + Hermes)
Roblox Studio → Windows VPS
104.207.93.128(atau PC lu)WEPPY + plugin → install di mesin yang sama dengan Studio
Expose MCP SSE → cloudflared/ngrok dari Windows
Hermes (Linux) → connect ke URL tunnel
/sseRailway (opsional) → ganti cloudflared biar URL stabil + auth token
Railway bagus buat URL stabil + auth, tapi Studio harus tetap “dekat” dengan HTTP bridge WEPPY.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceMCP server and plugin for Roblox Studio — control scripts, terrain, assets, and lighting with Claude Code, Cursor, Codex, and Gemini.Last updated2345154AGPL 3.0
- Alicense-qualityAmaintenanceA free, open-source MCP server that lets Claude, Cursor, Codex, or Gemini operate Roblox Studio — debug live playtests, bulk-edit places, and scaffold whole games — with a built-in safety layer.Last updated4MIT
- Alicense-qualityAmaintenanceAn MCP server that gives an AI coding agent real control of Roblox Studio and Roblox Open Cloud, with a test-and-security layer no other Studio MCP has.Last updated142MIT
- FlicenseAqualityCmaintenanceAn MCP server that bridges AI to Roblox Studio, enabling execution of Luau scripts, instance manipulation, play-testing control, and Open Cloud operations via natural language.Last updated21
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server for Hailuo (MiniMax) AI video generation
MCP server for OpenAI Sora AI video generation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/cabalspam7/weppy-railway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server