Pulls public data from Roblox profiles through a hosted gateway at Pipeworx. You get three main tools: user_badges for badge lookups, user_games for created games, and user_presence for checking online status across up to 100 user IDs at once. Also includes friends and groups lookups based on the description. Runs over streamable HTTP, so no local setup needed. The gateway approach means you can either call tools directly or use ask_pipeworx to query in plain English and let it route to the right endpoint. Useful if you're building tools that need to surface Roblox user data or analyze player activity without hitting rate limits on your own API keys.
Roblox MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
user_badges | Badges. |
user_games | Created games. |
user_presence | Presence for up to 100 user ids. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"roblox": {
"url": "https://gateway.pipeworx.io/roblox/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Roblox data" })
The gateway picks the right tool and fills the arguments automatically.
MIT