Bloxscout
FreeMaintainedReconnaissance for Roblox game devs and their agents — open-source MCP server + CLI for Roblox game analytics.
About
Reconnaissance for Roblox game devs and their agents — open-source MCP server + CLI for Roblox game analytics.
README
Reconnaissance for Roblox game devs and their agents.
npm version CI License: MIT MCP Server
What is Bloxscout?
Roblox developers operate one of the largest game platforms in the world, yet most market-intelligence tools they rely on (chiefly rotrends.com) have no public API. That means a developer cannot ask their AI agent simple questions like "which Simulator games are trending this week?", "how does my game's CCU compare to the genre median?", or "what would a 20,000 Robux DevEx payout net me in USD?" without leaving their editor, copy-pasting between tabs, and re-explaining context every time.
Bloxscout closes that gap. It is an open-source TypeScript Model Context Protocol (MCP) stdio server (bloxscout-mcp) that exposes 20 tools across discovery, game intelligence, creator/community lookup, calculators, snapshots, and reports — all backed by Roblox's public unauthenticated endpoints and (optionally) Open Cloud for the user's own games.
New in v0.2: hosted historical data. Bloxscout runs an open ingestion pipeline that snapshots thousands of popular Roblox games every ~30 minutes and publishes the rollups as static JSON in the public bloxscout-data repo. The tools read it over plain HTTPS — so get_trending_games returns real 24h/7d growth from your very first call, get_breakout_games flags statistically anomalous CCU spikes, and get_genre_momentum shows which niches are rising — with no API key, no signup, and no waiting for a local store to fill up. The local SQLite snapshot store (~/.bloxscout/data.db) is still there for niche games the pipeline doesn't track and for finer-grained windows; everything degrades gracefully to local/live behavior when you're offline (or set BLOXSCOUT_NO_HOSTED=1).
Quick start (MCP)
Bloxscout is MCP-first — its primary user is an LLM agent inside Claude Code, Cursor, Windsurf, or Zed.
Claude Code
claude mcp add bloxscout -- npx -y bloxscout-mcp
Cursor (~/.cursor/mcp.json)
{
"mcpServers": {
"bloxscout": {
"command": "npx",
"args": ["-y", "bloxscout-mcp"]
}
}
}
Windsurf (~/.codeium/windsurf/mcp_config.json)
{
"mcpServers": {
"bloxscout": {
"command": "npx",
"args": ["-y", "bloxscout-mcp"]
}
}
}
Zed (~/.config/zed/settings.json)
{
"context_servers": {
"bloxscout": {
"command": {
"path": "npx",
"args": ["-y", "bloxscout-mcp"]
}
}
}
}
Once registered, ask your agent things like "Use bloxscout to find the top 10 trending Simulator games and tell me which ones are growing fastest week-over-week."
What can it do?
Discovery
| Tool | Description |
|---|---|
search_games |
Search Roblox's catalog by keyword with optional genre and sort filters. |
get_trending_games |
Rank games by real 24h CCU growth (hosted dataset), with a live current-CCU fallback. |
get_top_by_genre |
List the top games within a specific genre ranked by CCU or visits. |
get_up_and_coming |
Surface smaller games with unusually strong recent growth. |
get_breakout_games |
Detect games whose trailing-24h CCU is statistically anomalous vs their own prior week. |
get_genre_momentum |
Rank genres by momentum: summed CCU plus 24h/7d growth of the genre as a whole. |
Game intelligence
| Tool | Description |
|---|---|
get_game |
Fetch a single game's full metadata: name, description, creator, stats, thumbnails. |
get_game_player_count |
Return current CCU and total visits for a given universe ID. |
get_game_history |
Historical CCU/visits/favorites for a game — hosted dataset merged with your local snapshots. |
compare_games |
Side-by-side comparison of up to N games on the same metrics. |
analyze_game_vs_genre |
Compare one game against the median/percentile of its genre cohort. |
Creator and community
| Tool | Description |
|---|---|
get_creator |
Look up a user or group creator with bio, follower count, and verification status. |
get_group |
Fetch a group's metadata, member count, and recent activity. |
get_top_creators_by_genre |
Identify the most successful creators within a specific genre. |
Calculators
| Tool | Description |
|---|---|
calculate_devex |
Convert Robux to USD via the current DevEx rate. |
estimate_game_revenue |
Estimate gross Robux revenue from visits, CCU, and monetization assumptions. |
Operational
| Tool | Description |
|---|---|
snapshot_game |
Capture a point-in-time snapshot of a game into the local SQLite store. |
watch_games |
Schedule recurring snapshots for a set of games to build time-series. |
Reports
| Tool | Description |
|---|---|
generate_market_report |
Produce a structured market report (Markdown + JSON) for a genre or watchlist. |
Data sources
Bloxscout reads from:
games.roblox.com— game metadata, search, sortapis.roblox.com— omni-search and explore-api discovery sortsgroups.roblox.com— group metadatausers.roblox.com— user metadatathumbnails.roblox.com— game and creator thumbnails- bloxscout-data — open hosted dataset of historical game metrics (static JSON over GitHub's CDN; refreshed ~every 30 min; opt out with
BLOXSCOUT_NO_HOSTED=1, mirror withBLOXSCOUT_HOSTED_BASE_URL) - Roblox Open Cloud — optional, authenticated, only for games you own
- Local SQLite snapshot store at
~/.bloxscout/data.db— for historical time-series you build yourself
Disclaimer: Bloxscout is an unofficial tool. It is not affiliated with, endorsed by, or sponsored by Roblox Corporation or Super League Enterprise / Rotrends. Data is sourced from Roblox's public unauthenticated endpoints (games.roblox.com, presence.roblox.com, groups.roblox.com, users.roblox.com).
Contributing
Contributions are welcome. Start with CONTRIBUTING.md, and look for issues tagged good first issue.
License
Licensed under the MIT License.
Disclaimer
Bloxscout is an unofficial tool. It is not affiliated with, endorsed by, or sponsored by Roblox Corporation or Super League Enterprise / Rotrends. Data is sourced from Roblox's public unauthenticated endpoints (games.roblox.com, presence.roblox.com, groups.roblox.com, users.roblox.com).
Install Bloxscout in Claude Desktop, Claude Code & Cursor
unyly install bloxscoutInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add bloxscout -- npx -y bloxscoutStep-by-step: how to install Bloxscout
FAQ
Is Bloxscout MCP free?
Yes, Bloxscout MCP is free — one-click install via Unyly at no cost.
Does Bloxscout need an API key?
No, Bloxscout runs without API keys or environment variables.
Is Bloxscout hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Bloxscout in Claude Desktop, Claude Code or Cursor?
Open Bloxscout on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
by duxiaohuiSupabase
Database, auth and storage
by SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare Bloxscout with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
