roblox-devproducts-mcp
roblox-devproducts-mcp
A local MCP server that lets AI agents (Claude Code, Codex, etc.) manage Roblox developer products and game passes through the Open Cloud API.
Runs entirely on your machine. Your API key is stored locally and never leaves your computer.
Tools
Tool | What it does |
| List a universe's developer products (id, name, price, description) |
| Get one product's full details by ID |
| Create a new developer product |
| Update a product's name, price, description, on-sale status, or icon |
| Create many products in one call (auto rate-limited to 3/sec) |
| Update many products in one call (auto rate-limited to 3/sec) |
| List a universe's game passes (id, name, price, description) |
| Get one game pass's full details by ID |
| Create a new game pass |
| Update a game pass's name, price, description, on-sale status, or icon |
| Create many game passes in one call (auto rate-limited to 5/sec) |
| Update many game passes in one call (auto rate-limited to 5/sec) |
All create/update tools accept an optional imagePath — a local file path, file:// URL, or
https:// URL to a .png/.jpg — uploaded as the item's icon (subject to Roblox moderation).
Setup
1. Get an Open Cloud API key
Go to the Creator Dashboard → Open Cloud → API Keys.
Create a key and add the Developer Products and/or Game Passes API systems — whichever you plan to use.
Scope each (read and/or write) to the universes you want to manage.
Use the narrowest scope you need — this key only needs the monetization access you'll use, not your whole account. (Game-pass tools require the Game Passes system on the key; without it they return "Scope not authorized".)
2. Install
npm install -g roblox-devproducts-mcp(Or clone this repo and run npm install && npm run build, then use node dist/cli.js as the command.)
3. Store your key
roblox-devproducts-mcp setupThis prompts for your key (hidden input) and saves it to your OS config directory. No secrets end up in any shared config file. Check it worked with:
roblox-devproducts-mcp status4. Connect it to Claude Code
Either register it:
claude mcp add roblox-devproducts -- roblox-devproducts-mcpor add a .mcp.json to your project (safe to commit — it contains no secret):
{
"mcpServers": {
"roblox-devproducts": {
"command": "roblox-devproducts-mcp"
}
}
}The tools appear as mcp__roblox-devproducts__* in your next session; /mcp shows status.
Managing your key
Command | Action |
| Store or replace the key |
| Delete the stored key |
| Show whether a key is configured and where it came from |
A key stored by setup takes precedence. If you haven't run setup, the ROBLOX_API_KEY environment variable is used as a fallback (handy for CI).
License
MIT
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/frrazer/roblox-devproducts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server