game_passes
Pack: roblox · Endpoint: https://gateway.pipeworx.io/roblox/mcp
List the game passes (one-time-purchase perks, e.g. VIP, 2x Money) sold in a Roblox experience, with their exact Robux price. Resolves the experience from universe_id, place_id, or a name (e.g. “Grow a Garden”) — pass exactly one. A pass currently not for sale returns is_for_sale:false and price_robux:null rather than 0. Cursor-paginated, capped at 100 per page. Note: many top experiences sell in-game currency and items via consumable “developer products” rather than permanent game passes — a small or empty list is a genuine answer, not a tool failure.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
universe_id | number | no | Roblox universe (experience) id. |
place_id | number | no | Roblox place id — resolved to its universe. |
name | string | no | Experience name to search for, e.g. “Grow a Garden”. |
cursor | string | no | Pagination cursor from a previous response next_cursor. |
limit | number | no | Max passes to return, default 25, max 100. |
Example call
Arguments
{
"name": "Grow a Garden"
}
curl
curl -X POST https://gateway.pipeworx.io/roblox/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"game_passes","arguments":{"name":"Grow a Garden"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('game_passes', {
"name": "Grow a Garden"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"roblox": {
"url": "https://gateway.pipeworx.io/roblox/mcp"
}
}
}
See Getting Started for client-specific install steps.