AuroraScope MCP

← Dashboard
Connect Claude Code, Cursor, Claude Desktop, Codex CLI, or any other MCP-aware AI client to AuroraScope. Your AI gets read access to your captures, sessions, and remotes — plus the ability to generate scripts and replay remotes — all using your existing AuroraScope token. No install required, no localhost ports, full token auth.
Studio+ tier required for write tools (scope_generate_script, scope_replay_remote). Pro tier has read access to captures, sessions, remotes, history, and watchdog state.

1. Get your token

Open the AuroraScope Dashboard and copy your token from the Account tab. It looks like scp_xxxxxxxxxxxxxxxx.

2. Add to your AI client

Claude Code (CLI)

Run this in your terminal:

claude mcp add aurorascope \
  --transport http \
  --url https://aurorahub.net/mcp/jsonrpc \
  --header "Authorization: Bearer scp_YOUR_TOKEN_HERE"

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "aurorascope": {
      "transport": "http",
      "url": "https://aurorahub.net/mcp/jsonrpc",
      "headers": {
        "Authorization": "Bearer scp_YOUR_TOKEN_HERE"
      }
    }
  }
}

Cursor

Open Cursor settings → MCP → Add Server. Paste:

{
  "name": "aurorascope",
  "url": "https://aurorahub.net/mcp/jsonrpc",
  "headers": { "Authorization": "Bearer scp_YOUR_TOKEN_HERE" }
}

Codex CLI / Windsurf

Both support remote MCP via HTTP. Use the URL https://aurorahub.net/mcp/jsonrpc with the same Authorization header pattern.

3. Available tools

scope_get_capturesLatest remote calls captured by your agent — filter by session, search, time
scope_get_sessionsActive agent sessions (one per Roblox client)
scope_get_remotesUnique remote signatures across your sessions
scope_search_remotesSubstring search captured remote_paths
scope_generate_scriptAI generates a Lua script grounded in your captures (consumes daily quota)
scope_replay_remoteRe-fire a captured remote with edited args; agent v0.5.0+ executes
scope_list_honeypotsCaptured remotes flagged as anti-cheat traps or admin-only
scope_get_historyPast AI generations (prompt + script)
scope_get_quotaRemaining daily AI quota
scope_list_watchdogWatched games + recent change events
scope_get_aurora_patternPull Aurora reference patterns + per-game intel from the curated RAG corpus

4. Test the connection

From any HTTP client (curl, Postman, etc):

curl -X POST https://aurorahub.net/mcp/jsonrpc \
  -H "Authorization: Bearer scp_YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

You should see a response listing all available tools. If you get 401 Unauthenticated, double-check the token.

AuroraScope Dashboard REST API Terms & AUP Support Discord Hosted MCP since 2026 · the only hosted MCP for Roblox