Ask Claude, Cursor, Windsurf, or Claude Code in plain English — “which RedM script categories are still underserved?” — and get real Stagecraft data back, without leaving the editor you already live in.
Requires the Agency plan. Pre-release — version 0.1.0, breaking changes possible.
Works with any MCP-compatible client.
The MCP server exposes ten read-only tools. Your editor's LLM picks the right one, calls the Stagecraft API, and answers in your thread.
“Find me an underserved RedM script category I could ship in 3 weeks”
“Analyze my Tebex shop and tell me what to ship next”
“Score this idea: QBox-native vehicle insurance script”
“Show me how Scripts vs Maps median price has moved this quarter”
Drop your sk_live_... key into the env block and restart the host. The optional STAGECRAFT_BASE_URL env var is left commented out — uncomment it to point at a preview environment.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS, or %APPDATA%/Claude/claude_desktop_config.json on Windows.
{
"mcpServers": {
"stagecraft": {
"command": "npx",
"args": ["-y", "@stagecraft/mcp@latest"],
"env": {
"STAGECRAFT_API_KEY": "sk_live_..."
}
}
}
}@stagecraft/mcp isn't published to npm yet. To run the local build today, swap the command for node and the args for ["/path/to/stagecraft/packages/mcp/dist/index.js"].
Add to ~/.cursor/mcp.json, or use the Settings → MCP UI and paste the same block.
{
"mcpServers": {
"stagecraft": {
"command": "npx",
"args": ["-y", "@stagecraft/mcp@latest"],
"env": {
"STAGECRAFT_API_KEY": "sk_live_..."
}
}
}
}Add to ~/.codeium/windsurf/mcp_config.json. The shape matches Claude Desktop and Cursor.
{
"mcpServers": {
"stagecraft": {
"command": "npx",
"args": ["-y", "@stagecraft/mcp@latest"],
"env": {
"STAGECRAFT_API_KEY": "sk_live_..."
}
}
}
}Use the claude mcp add CLI — the server registers in your user config and is available in every project.
# Add the server (user scope so it's available in every project)
claude mcp add stagecraft --scope user \
--env STAGECRAFT_API_KEY=sk_live_... \
-- npx -y @stagecraft/mcp@latest
# Optional: override the API base
# claude mcp add stagecraft --scope user \
# --env STAGECRAFT_API_KEY=sk_live_... \
# --env STAGECRAFT_BASE_URL=https://stagecraft.gg/api/v1 \
# -- npx -y @stagecraft/mcp@latestEvery tool accepts an optional format: "json" | "markdown" argument so you can switch between human and machine output. Idempotent — safe to retry.
stagecraft_search_listingsFilter the FiveM/RedM catalog by query, framework, category, price, rating, sort.stagecraft_get_listingOne listing with N-day snapshots and recent events.stagecraft_get_seller_historyA seller's full catalog and event timeline.stagecraft_get_creatorSeller profile plus up to 100 listings.stagecraft_list_opportunitiesRanked (category × framework) clusters with sub-scores.stagecraft_find_underserved_categoriesTop-N qualifying clusters with per-axis explanations.stagecraft_get_category_timelineDaily aggregates — active listings, avg price, churn — for a category.stagecraft_compare_listingsSide-by-side compare table for 2–5 listings.stagecraft_export_listings_csvBulk CSV export — inline text or base64 for larger payloads.stagecraft_score_listing_ideaScore a free-text idea against existing listings and matching opportunity clusters.MCP resources are read-only documents the LLM can pull into context on demand. Stagecraft ships two: live opportunity rankings and per-category timelines that update every scrape.
Slash-command prompts pre-loaded with the right tools and instructions. Useful when you don't want to phrase the same analysis prompt from scratch every time.
The same scraper output that powers our reports and the dashboard. Daily snapshots, 90 days of history, every public listing on Cfx Marketplace and top Tebex stores.
Framework-aware end to end — QBox, QBCore, ESX, Standalone, RedM. Filter by it, cluster by it, score ideas against it. No generic “game asset” bucket.
No dashboard tab to context-switch to. No copy-paste between windows. You stay in the editor, ask the question, and ship.
0.1.0. Breaking changes are possible until 1.0. Pinned to the 2025-11-25 MCP spec; we'll bump and document any spec migration in the changelog./api/v1 surface, which is Agency-gated. See pricing for the full comparison.One key, four hosts, ten tools. Sign in, mint a key, paste it into the config block above, restart your editor.